-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
Server.java
39 lines (31 loc) · 1.05 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
package io.vertx.example.grpc.conversation;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.Launcher;
import io.vertx.example.grpc.ConversationalServiceGrpc;
import io.vertx.example.grpc.Messages;
import io.vertx.grpc.server.GrpcServer;
/*
* @author <a href="mailto:[email protected]">Paulo Lopes</a>
*/
public class Server extends AbstractVerticle {
public static void main(String[] args) {
Launcher.executeCommand("run", Server.class.getName());
}
@Override
public void start() {
// Create the server
GrpcServer rpcServer = GrpcServer.server(vertx);
// The rpc service
rpcServer.callHandler(ConversationalServiceGrpc.getFullDuplexCallMethod(), request -> {
System.out.println("Server: received request");
vertx.setTimer(500L, t -> {
request.response().write(Messages.StreamingOutputCallResponse.newBuilder().build());
});
});
// start the server
vertx.createHttpServer().requestHandler(rpcServer).listen(8080)
.onFailure(cause -> {
cause.printStackTrace();
});
}
}