Skip to content

Instantly share code, notes, and snippets.

View Orabig's full-sized avatar

Benoît Chauvet Orabig

View GitHub Profile
@benorama
benorama / EventBusService.ts
Created April 22, 2017 10:40
Typescript version of Vertx EventBus Client for Angular
/**
* Based on Vertx EventBus Client (https://github.com/vert-x3/vertx-bus-bower)
* Requires SockJS Client
*/
import {EventEmitter, Injectable} from "@angular/core";
import * as SockJS from 'sockjs-client';
@Injectable()
export class EventBusService {