mirror of
https://github.com/fabioformosa/quartz-manager.git
synced 2026-05-14 22:00:30 +09:00
13 lines
281 B
TypeScript
13 lines
281 B
TypeScript
import {RxStomp} from '@stomp/rx-stomp';
|
|
import {RxStompConfig} from '@stomp/rx-stomp/esm6/rx-stomp-config';
|
|
|
|
export class RxStompService extends RxStomp {
|
|
|
|
constructor(rxStompConfig: RxStompConfig) {
|
|
super();
|
|
super.configure(rxStompConfig);
|
|
super.activate();
|
|
}
|
|
|
|
}
|