Interface: SubscribeAllCallbacks
Defined in: packages/core/src/types.ts:50
Categorized callbacks accepted by Processable.subscribeToAll().
Named so composites can share one canonical shape instead of each
re-declaring the same inline object type (see core/stream-hub.ts's
fanOutSubscribeToAll, which every composite Processable delegates to).
Properties
omit?
optionalomit?:string[]
Defined in: packages/core/src/types.ts:55
onComplete?
optionalonComplete?: (botId,botName,output) =>void
Defined in: packages/core/src/types.ts:52
Parameters
botId
string
botName
string
output
unknown
Returns
void
onError?
optionalonError?: (botId,botName,event) =>void
Defined in: packages/core/src/types.ts:54
Parameters
botId
string
botName
string
event
Returns
void
onProgressUpdate?
optionalonProgressUpdate?: (botId,botName,event) =>void
Defined in: packages/core/src/types.ts:53
Parameters
botId
string
botName
string
event
Returns
void
onStreamEvent?
optionalonStreamEvent?: (botId,botName,event) =>void
Defined in: packages/core/src/types.ts:51
Parameters
botId
string
botName
string
event
Returns
void