-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathServer.java
More file actions
37 lines (30 loc) · 1002 Bytes
/
Server.java
File metadata and controls
37 lines (30 loc) · 1002 Bytes
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
package io.vertx.example.grpc.empty;
import io.vertx.core.Future;
import io.vertx.core.VerticleBase;
import io.vertx.example.grpc.EmptyPingPongServiceGrpcService;
import io.vertx.example.grpc.EmptyProtos;
import io.vertx.grpc.server.GrpcServer;
import io.vertx.launcher.application.VertxApplication;
/*
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a>
*/
public class Server extends VerticleBase {
public static void main(String[] args) {
VertxApplication.main(new String[]{Server.class.getName()});
System.out.println("Server started");
}
@Override
public Future<?> start() {
// Create the server
GrpcServer rpcServer = GrpcServer.server(vertx);
// The rpc service
rpcServer.callHandler(EmptyPingPongServiceGrpcService.EmptyCall, request -> {
request.response().end(EmptyProtos.Empty.newBuilder().build());
});
// start the server
return vertx
.createHttpServer()
.requestHandler(rpcServer)
.listen(8080);
}
}