Interface representing callbacks for session-related events within a swarm. Provides hooks for connection, execution, and emission events.
onConnect: (clientId: string, swarmName: string) => void
Optional callback triggered when a client connects to the swarm. Useful for logging or initialization tasks.
onExecute: (clientId: string, swarmName: string, content: string, mode: ExecutionMode) => void
Optional callback triggered when a command is executed within the swarm.
onRun: (clientId: string, swarmName: string, content: string) => void
Optional callback triggered when a stateless completion run is executed.
onEmit: (clientId: string, swarmName: string, message: string) => void
Optional callback triggered when a message is emitted from the swarm.
onInit: (clientId: string, swarmName: string) => void
Optional callback triggered when a session is initialized within the swarm.
onDispose: (clientId: string, swarmName: string) => void
Optional callback triggered when a session is disconnected or disposed of. Note: "disponnected" in original comment corrected to "disconnected".