-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Copy pathServer.java
60 lines (45 loc) · 1.97 KB
/
Server.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
package io.vertx.example.web.realtime;
import io.vertx.core.Future;
import io.vertx.core.VerticleBase;
import io.vertx.ext.bridge.BridgeEventType;
import io.vertx.ext.bridge.PermittedOptions;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.StaticHandler;
import io.vertx.ext.web.handler.sockjs.SockJSBridgeOptions;
import io.vertx.ext.web.handler.sockjs.SockJSHandler;
import io.vertx.launcher.application.VertxApplication;
/*
* @author <a href="http://tfox.org">Tim Fox</a>
*/
public class Server extends VerticleBase {
public static void main(String[] args) {
VertxApplication.main(new String[]{Server.class.getName()});
}
@Override
public Future<?> start() throws Exception {
Router router = Router.router(vertx);
// Allow outbound traffic to the news-feed address
SockJSBridgeOptions options = new SockJSBridgeOptions()
.addOutboundPermitted(new PermittedOptions().setAddress("news-feed"));
SockJSHandler sockJSHandler = SockJSHandler.create(vertx);
Router subRouter = sockJSHandler.bridge(options, event -> {
// You can also optionally provide a handler like this which will be passed any events that occur on the bridge
// You can use this for monitoring or logging, or to change the raw messages in-flight.
// It can also be used for fine-grained access control.
if (event.type() == BridgeEventType.SOCKET_CREATED) {
System.out.println("A socket was created");
}
// This signals that it's ok to process the event
event.complete(true);
});
router.route("/eventbus/*").subRouter(subRouter);
// Serve the static resources
router.route().handler(StaticHandler.create("io/vertx/example/web/realtime/webroot"));
// Publish a message to the address "news-feed" every second
vertx.setPeriodic(1000, t -> vertx.eventBus().publish("news-feed", "news from the server!"));
return vertx
.createHttpServer()
.requestHandler(router)
.listen(8080);
}
}