Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

index.d.ts 3.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /// <reference types="node" />
  2. import { EventEmitter } from "events";
  3. export declare type SocketId = string;
  4. export declare type Room = string;
  5. export interface BroadcastFlags {
  6. volatile?: boolean;
  7. compress?: boolean;
  8. local?: boolean;
  9. broadcast?: boolean;
  10. binary?: boolean;
  11. }
  12. export interface BroadcastOptions {
  13. rooms: Set<Room>;
  14. except?: Set<SocketId>;
  15. flags?: BroadcastFlags;
  16. }
  17. export declare class Adapter extends EventEmitter {
  18. readonly nsp: any;
  19. rooms: Map<Room, Set<SocketId>>;
  20. sids: Map<SocketId, Set<Room>>;
  21. private readonly encoder;
  22. /**
  23. * In-memory adapter constructor.
  24. *
  25. * @param {Namespace} nsp
  26. */
  27. constructor(nsp: any);
  28. /**
  29. * To be overridden
  30. */
  31. init(): Promise<void> | void;
  32. /**
  33. * To be overridden
  34. */
  35. close(): Promise<void> | void;
  36. /**
  37. * Adds a socket to a list of room.
  38. *
  39. * @param {SocketId} id the socket id
  40. * @param {Set<Room>} rooms a set of rooms
  41. * @public
  42. */
  43. addAll(id: SocketId, rooms: Set<Room>): Promise<void> | void;
  44. /**
  45. * Removes a socket from a room.
  46. *
  47. * @param {SocketId} id the socket id
  48. * @param {Room} room the room name
  49. */
  50. del(id: SocketId, room: Room): Promise<void> | void;
  51. private _del;
  52. /**
  53. * Removes a socket from all rooms it's joined.
  54. *
  55. * @param {SocketId} id the socket id
  56. */
  57. delAll(id: SocketId): void;
  58. /**
  59. * Broadcasts a packet.
  60. *
  61. * Options:
  62. * - `flags` {Object} flags for this packet
  63. * - `except` {Array} sids that should be excluded
  64. * - `rooms` {Array} list of rooms to broadcast to
  65. *
  66. * @param {Object} packet the packet object
  67. * @param {Object} opts the options
  68. * @public
  69. */
  70. broadcast(packet: any, opts: BroadcastOptions): void;
  71. /**
  72. * Gets a list of sockets by sid.
  73. *
  74. * @param {Set<Room>} rooms the explicit set of rooms to check.
  75. */
  76. sockets(rooms: Set<Room>): Promise<Set<SocketId>>;
  77. /**
  78. * Gets the list of rooms a given socket has joined.
  79. *
  80. * @param {SocketId} id the socket id
  81. */
  82. socketRooms(id: SocketId): Set<Room> | undefined;
  83. /**
  84. * Returns the matching socket instances
  85. *
  86. * @param opts - the filters to apply
  87. */
  88. fetchSockets(opts: BroadcastOptions): Promise<any[]>;
  89. /**
  90. * Makes the matching socket instances join the specified rooms
  91. *
  92. * @param opts - the filters to apply
  93. * @param rooms - the rooms to join
  94. */
  95. addSockets(opts: BroadcastOptions, rooms: Room[]): void;
  96. /**
  97. * Makes the matching socket instances leave the specified rooms
  98. *
  99. * @param opts - the filters to apply
  100. * @param rooms - the rooms to leave
  101. */
  102. delSockets(opts: BroadcastOptions, rooms: Room[]): void;
  103. /**
  104. * Makes the matching socket instances disconnect
  105. *
  106. * @param opts - the filters to apply
  107. * @param close - whether to close the underlying connection
  108. */
  109. disconnectSockets(opts: BroadcastOptions, close: boolean): void;
  110. private apply;
  111. private computeExceptSids;
  112. /**
  113. * Send a packet to the other Socket.IO servers in the cluster
  114. * @param packet - an array of arguments, which may include an acknowledgement callback at the end
  115. */
  116. serverSideEmit(packet: any[]): void;
  117. }