addStompService method
Adds STOMP service to the host
Implementation
Future<StompService> addStompService({StompServiceOptions? options}) async {
final service = StompService(this, options: options);
await service.start();
return service;
}
Adds STOMP service to the host
Future<StompService> addStompService({StompServiceOptions? options}) async {
final service = StompService(this, options: options);
await service.start();
return service;
}