Type Alias: CustomBatchingDispatchSchedule()
ts
type CustomBatchingDispatchSchedule = (dispatch: () => void) => void;
Defined in: evaluator/LlamaContext/types.ts:248
A function that schedules the dispatch of the batch items. Call the dispatch
function to dispatch the items.
Parameters
Parameter | Type |
---|---|
dispatch | () => void |
Returns
void