* @interface Publisher * @memberof PubSubAdapter
| 19 | * @memberof PubSubAdapter |
| 20 | */ |
| 21 | interface Publisher { |
| 22 | /** |
| 23 | * @param {String} channel the channel in which to publish |
| 24 | * @param {String} message the message to publish |
| 25 | */ |
| 26 | publish(channel: string, message: string): void; |
| 27 | } |
| 28 | |
| 29 | /** |
| 30 | * @interface Subscriber |
no outgoing calls
no test coverage detected