Broadcast
@tsed/socketio
Usage
typescript
import { Broadcast } from "@tsed/socketio";
See /packages/third-parties/socketio/src/types/decorators/broadcast.ts.
Overview
ts
function Broadcast(eventName: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;
Description
Broadcast the response for all client registered in the same namespace.
With the @Broadcast
decorator, the method will accept a return type (Promise or not).
Example
typescript
@SocketService("/nsp")
export class MyWS {
@Input("event")
@Broadcast("returnEvent")
async myMethod(@Args(0) data: any, @Nsp socket): Promise<any> {
return Promise.resolve({data})
}
}