Start prepares the DataLoader for loading data. This may involve creating goroutines, opening files, etc. Start must be called before any calls to LoadChunk.
()
| 24 | // Start prepares the DataLoader for loading data. This may involve creating goroutines, opening files, etc. |
| 25 | // Start must be called before any calls to LoadChunk. |
| 26 | Start() <-chan error |
| 27 | |
| 28 | // LoadChunk reads the records from |data| and inserts them into the previously configured table. Data records |
| 29 | // are not guaranteed to stard and end cleanly on chunk boundaries, so implementations must recognize incomplete |
no outgoing calls
no test coverage detected