Interface IChatInstanceCallbacks
interface IChatInstanceCallbacks { onBeginChat(clientId: string, swarmName: string): void; onCheckActivity( clientId: string, swarmName: string, isActive: boolean, lastActivity: number, ): void; onDispose( clientId: string, swarmName: string, instance: IChatInstance, ): void; onInit(clientId: string, swarmName: string, instance: IChatInstance): void; onSendMessage(clientId: string, swarmName: string, content: string): void;} Methods
onBeginChat
onBeginChat(clientId: string, swarmName: string): void Parameters
- clientId: string
- swarmName: string
Returns void
onCheckActivity
onCheckActivity( clientId: string, swarmName: string, isActive: boolean, lastActivity: number,): void Parameters
- clientId: string
- swarmName: string
- isActive: boolean
- lastActivity: number
Returns void
onDispose
onDispose(clientId: string, swarmName: string, instance: IChatInstance): void
onInit
onInit(clientId: string, swarmName: string, instance: IChatInstance): void
onSendMessage
onSendMessage(clientId: string, swarmName: string, content: string): void Parameters
- clientId: string
- swarmName: string
- content: string
Returns void
IChatInstanceCallbacks
Description
Callback interface for chat instance events