-
Notifications
You must be signed in to change notification settings - Fork 2.1k
/
ServerWithStub.java
52 lines (44 loc) · 1.67 KB
/
ServerWithStub.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
package io.vertx.example.grpc.producer;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.Future;
import io.vertx.core.Launcher;
import io.vertx.core.Promise;
import io.vertx.core.streams.ReadStream;
import io.vertx.example.grpc.Messages;
import io.vertx.example.grpc.VertxProducerServiceGrpcServer;
import io.vertx.grpc.server.GrpcServer;
import io.vertx.grpc.server.GrpcServiceBridge;
/*
* @author <a href="mailto:[email protected]">Paulo Lopes</a>
*/
public class ServerWithStub extends AbstractVerticle {
public static void main(String[] args) {
Launcher.executeCommand("run", ServerWithStub.class.getName());
}
@Override
public void start() {
// The rpc service
VertxProducerServiceGrpcServer.ProducerServiceApi service = new VertxProducerServiceGrpcServer.ProducerServiceApi() {
@Override
public Future<Messages.StreamingInputCallResponse> streamingInputCall(ReadStream<Messages.StreamingInputCallRequest> request) {
Promise<Messages.StreamingInputCallResponse> promise = Promise.promise();
request.handler(payload -> {
System.out.println(payload.getPayload().getType().getNumber());
}).endHandler(v -> {
System.out.println("Request has ended.");
promise.complete(Messages.StreamingInputCallResponse.newBuilder().build());
});
return promise.future();
}
};
// Create the server
GrpcServer rpcServer = GrpcServer.server(vertx);
// Bind the service
service.bind_streamingInputCall(rpcServer);
// start the server
vertx.createHttpServer().requestHandler(rpcServer).listen(8080)
.onFailure(cause -> {
cause.printStackTrace();
});
}
}