Emit Decorator

Module
import { Emit } from "@tsed/socketio"
Source/packages/socketio/src/decorators/emit.ts

Overview

function Emit(eventName: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) =>; void;

Description

Emit the response to the client.

With the @Emit decorator, the method will accept a return type (Promise or not).

Example

@SocketService("/nsp")
export class MyWS {

  @Input("event")
  @Emit("returnEvent")
  async myMethod(@Args(0) data: any, @Nsp socket): Promise<any> {
     return Promise.resolve({data})
  }
}
1
2
3
4
5
6
7
8
9