ApiExtractor helps you extract Raw Data from api responses to Tool Layer Data It reads rows from specified raw data table, and feed it into `Extract` handler you can return arbitrary tool layer entities in this handler, ApiExtractor would first delete old data by their RawDataOrigin information, and
| 40 | // first delete old data by their RawDataOrigin information, and then perform a |
| 41 | // batch save for you. |
| 42 | type ApiExtractor struct { |
| 43 | *RawDataSubTask |
| 44 | args *ApiExtractorArgs |
| 45 | } |
| 46 | |
| 47 | // NewApiExtractor creates a new ApiExtractor, TODO: replaced with NewStatefulApiExtractor |
| 48 | func NewApiExtractor(args ApiExtractorArgs) (*ApiExtractor, errors.Error) { |
nothing calls this directly
no outgoing calls
no test coverage detected