CallbackInput is passed to callbacks.OnStart when batch processing begins.
| 96 | |
| 97 | // CallbackInput is passed to callbacks.OnStart when batch processing begins. |
| 98 | type CallbackInput[I any] struct { |
| 99 | Inputs []I // All input items to be processed |
| 100 | MaxConcurrency int // Configured concurrency limit |
| 101 | } |
| 102 | |
| 103 | // CallbackOutput is passed to callbacks.OnEnd when batch processing completes. |
| 104 | type CallbackOutput[O any] struct { |
nothing calls this directly
no outgoing calls
no test coverage detected