forked from vert-x3/vertx-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Client.java
46 lines (39 loc) · 1.29 KB
/
Client.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
package io.vertx.example.grpc.producer;
import io.grpc.ManagedChannel;
import io.vertx.core.AbstractVerticle;
import io.vertx.example.grpc.Messages;
import io.vertx.example.grpc.VertxProducerServiceGrpc;
import io.vertx.example.util.Runner;
import io.vertx.grpc.VertxChannelBuilder;
/*
* @author <a href="mailto:[email protected]">Paulo Lopes</a>
*/
public class Client extends AbstractVerticle {
// Convenience method so you can run it in your IDE
public static void main(String[] args) {
Runner.runExample(Client.class);
}
@Override
public void start() {
// Create the channel
ManagedChannel channel = VertxChannelBuilder
.forAddress(vertx, "localhost", 8080)
.usePlaintext()
.build();
// Get a stub to use for interacting with the remote service
VertxProducerServiceGrpc.ProducerServiceVertxStub stub = VertxProducerServiceGrpc.newVertxStub(channel);
// Call the remote service
stub.streamingInputCall(writeStream -> {
for (int i = 0; i < 10; i++) {
writeStream.write(Messages.StreamingInputCallRequest.newBuilder().build());
}
writeStream.end();
}).onComplete(ar -> {
if (ar.succeeded()) {
System.out.println("Server replied OK");
} else {
ar.cause().printStackTrace();
}
});
}
}