* Get a channel that validates against the schema. Messages will be filtered by the schema. * @param name The name of the channel. * @param schema A schema to use to validate messages.
(name: string, schema?: schema.JsonSchema)
| 339 | * @param schema A schema to use to validate messages. |
| 340 | */ |
| 341 | getChannel<T extends JsonValue>(name: string, schema?: schema.JsonSchema): Observable<T>; |
| 342 | |
| 343 | /** |
| 344 | * Pings the job and wait for the resulting Pong before completing. |
no outgoing calls
no test coverage detected