Add Server-Sent-Events support to Vert.x by providing a vertx-web handler that deals with all the stuff required for server-sent-events.
Currently trying to integrate into vertx-web. If you have some time to help, just contact me, thanks.
Simply
yourRouter.get("/sse").handler(SSEHandler.create());
But it won't do anything if you don't attach any handler to it.
SSEHandler sse = SSEHandler.create();
sse.connectHandler(connection -> {
// connection is an SSEConnection object you can push messages into
// it wraps the HttpServerRequest used to establish the connection
});
sse.closeHandler(connection -> {
// the same connection object as in the connect handler
});
SSEHandler sse = SSEHandler.create();
sse.connectHandler(sseConnection -> {
sseConnection.data("Welcome!");
});
yourRouter.get("/sse").handler(sse);
SSEHandler pingSSE = SSEHandler.create();
Map<SSEConnection, Long> timersPerConnection = new HashMap<SSEConnection, Long>();
pingSSE.connectHandler(sseConnection -> {
Long timerId = vertx.setPeriodic(1000, tId -> {
sseConnection.data("ping ! "+ new Date().getTime());
});
timersPerConnection.put(sseConnection, timerId);
});
pingSSE.closeHandler(sseConnection -> {
Long timerId = timersPerConnection.get(sseConnection);
if (timerId != null) {
vertx.cancelTimer(timerId);
}
});
yourRouter.get("/sse").handler(pingSSE);
You can also reject a connection and specify an http status code / message.
String magicToken = "theOneThatRulesThemAll";
SSEHandler sse = SSEHandler.create();
sse.connectHandler(sseConnection -> {
HttpServerRequest request = sseConnection.request();
String token = request.getParam("authenticationToken");
if (token == null) {
sseConnection.reject(401);
} else if (!magicToken.equals(token)) {
sseConnection.reject(403);
}
});
yourRouter.get("/sse").handler(sse);
This project also provides the ability to forward messages from Vert.x's event-bus to a SSEConnection
SSEHandler sse = SSEHandler.create();
sse.connectHandler(sseConnection -> {
sseConnection.forward("some-eventbus-address");
});
yourRouter.get("/sse").handler(sse);
Then every message published to some-eventbus-address
will be forwarded to every event source connected to /sse
On top of the forward
capability, this project comes with a very simple way to "bridge" event-bus messages onto SSE connections.
yourRouter.get("/sse/*").handler(EventBusSSEBridge.create());
If an event-source connects to /sse/foo/bar
then every message published on /sse/foo/bar
will be propagated to the the event source.
This is handy, but in practice, you'll probably need a mapping between the event-source URL and the event-bus address.
In this case, you can just use :
EventBusSSEBridge bridge = EventBusSSEBridge.create();
bridge.mapping(request -> request.getParam("ticker"))
yourRouter.get("/stocks/nasdaq/:ticker").handler(bridge);
Now, if an event-source connects on /stocks/nasdaq/aapl
it will receive every message published on the address aapl
.
You're free to create any mapping you need based on the incomoing event-source URL.
For more advanced use cases, you can have a look at the tests for inspiration.
This project also provides a simple EventSource
object that mimics the html5 EventSource API. So that you can create your own SSE clients programmatically.
HttpClientOptions options = new HttpClientOptions();
options.setDefaultHost("localhost");
options.setDefaultPort(9000);
EventSource eventSource = EventSource.create(vertx, options);
eventSource.connect(connectHandler -> {
if (connectHandler.succeeded()) {
// Yay ! you'll be able to receive events from the server
eventSource.onMessage(msg -> {
System.out.println("Message received : "+msg);
});
} else {
ConnectionRefusedException cre = (ConnectionRefuseException)connectHandler.cause();
System.out.println("Server dropped me because : " + cre.statusCode() + " and he told me : "+cre.statusMessage());
}
});
You can register handlers on the EventSource
object by calling :
- onMessage
- onEvent
or ask for the last id sent by the server : eventSource.lastId()
if you want to keep track of message ids (especially if you want to connect later).