(s *schema.Schema, filter transaction.Filter)
| 1147 | } |
| 1148 | |
| 1149 | func (tx *Transaction) StateFetch(s *schema.Schema, filter transaction.Filter) (state transaction.ResourceState, err error) { |
| 1150 | return tx.StateFetchContext(context.Background(), s, filter) |
| 1151 | } |
| 1152 | |
| 1153 | //StateFetch fetches the state of the specified resource |
| 1154 | func (tx *Transaction) StateFetchContext(ctx context.Context, s *schema.Schema, filter transaction.Filter) (state transaction.ResourceState, err error) { |
nothing calls this directly
no test coverage detected