use of io.grpc.examples.helloworld.HelloRequest in project vertx-examples by vert-x3.
the class Server method start.
@Override
public void start() throws Exception {
VertxServer server = VertxServerBuilder.forPort(vertx, 8080).addService(new GreeterGrpc.GreeterVertxImplBase() {
@Override
public void sayHello(HelloRequest request, Future<HelloReply> future) {
System.out.println("Hello " + request.getName());
future.complete(HelloReply.newBuilder().setMessage(request.getName()).build());
}
}).useSsl(options -> options.setSsl(true).setUseAlpn(true).setKeyStoreOptions(new JksOptions().setPath("tls/server-keystore.jks").setPassword("wibble"))).build();
server.start(ar -> {
if (ar.succeeded()) {
System.out.println("gRPC service started");
} else {
System.out.println("Could not start server " + ar.cause().getMessage());
}
});
}
use of io.grpc.examples.helloworld.HelloRequest in project vertx-examples by vert-x3.
the class Server method start.
@Override
public void start() throws Exception {
VertxServer server = VertxServerBuilder.forAddress(vertx, "localhost", 8080).addService(new GreeterGrpc.GreeterVertxImplBase() {
@Override
public void sayHello(HelloRequest request, Future<HelloReply> future) {
System.out.println("Hello " + request.getName());
future.complete(HelloReply.newBuilder().setMessage(request.getName()).build());
}
}).build();
server.start(ar -> {
if (ar.succeeded()) {
System.out.println("gRPC service started");
} else {
System.out.println("Could not start server " + ar.cause().getMessage());
}
});
}
use of io.grpc.examples.helloworld.HelloRequest in project vertx-openshift-it by cescoffier.
the class HelloGrpcVerticle method start.
@Override
public void start() throws Exception {
VertxServer server = VertxServerBuilder.forPort(vertx, 8082).useSsl(options -> options.setSsl(true).setUseAlpn(true).setKeyStoreOptions(new JksOptions().setPath("tls/server-keystore.jks").setPassword("wibble"))).addService(new GreeterGrpc.GreeterVertxImplBase() {
@Override
public void sayHello(HelloRequest request, Future<HelloReply> future) {
System.out.println("Hello " + request.getName());
future.complete(HelloReply.newBuilder().setMessage("Hello " + request.getName()).build());
}
}).build();
server.start(ar -> {
if (ar.succeeded()) {
System.out.println("gRPC service started");
} else {
System.out.println("Could not start server " + ar.cause().getMessage());
}
});
}
use of io.grpc.examples.helloworld.HelloRequest in project grpc-java by grpc.
the class HeaderClientInterceptorTest method clientHeaderDeliveredToServer.
@Test
public void clientHeaderDeliveredToServer() throws Exception {
// Generate a unique in-process server name.
String serverName = InProcessServerBuilder.generateName();
// Create a server, add service, start, and register for automatic graceful shutdown.
grpcCleanup.register(InProcessServerBuilder.forName(serverName).directExecutor().addService(ServerInterceptors.intercept(new GreeterImplBase() {
}, mockServerInterceptor)).build().start());
// Create a client channel and register for automatic graceful shutdown.
ManagedChannel channel = grpcCleanup.register(InProcessChannelBuilder.forName(serverName).directExecutor().build());
GreeterBlockingStub blockingStub = GreeterGrpc.newBlockingStub(ClientInterceptors.intercept(channel, new HeaderClientInterceptor()));
ArgumentCaptor<Metadata> metadataCaptor = ArgumentCaptor.forClass(Metadata.class);
try {
blockingStub.sayHello(HelloRequest.getDefaultInstance());
fail();
} catch (StatusRuntimeException expected) {
// expected because the method is not implemented at server side
}
verify(mockServerInterceptor).interceptCall(ArgumentMatchers.<ServerCall<HelloRequest, HelloReply>>any(), metadataCaptor.capture(), ArgumentMatchers.<ServerCallHandler<HelloRequest, HelloReply>>any());
assertEquals("customRequestValue", metadataCaptor.getValue().get(HeaderClientInterceptor.CUSTOM_HEADER_KEY));
}
use of io.grpc.examples.helloworld.HelloRequest in project grpc-java by grpc.
the class HeaderServerInterceptorTest method setUp.
@Before
public void setUp() throws Exception {
GreeterImplBase greeterImplBase = new GreeterImplBase() {
@Override
public void sayHello(HelloRequest request, StreamObserver<HelloReply> responseObserver) {
responseObserver.onNext(HelloReply.getDefaultInstance());
responseObserver.onCompleted();
}
};
// Generate a unique in-process server name.
String serverName = InProcessServerBuilder.generateName();
// Create a server, add service, start, and register for automatic graceful shutdown.
grpcCleanup.register(InProcessServerBuilder.forName(serverName).directExecutor().addService(ServerInterceptors.intercept(greeterImplBase, new HeaderServerInterceptor())).build().start());
// Create a client channel and register for automatic graceful shutdown.
channel = grpcCleanup.register(InProcessChannelBuilder.forName(serverName).directExecutor().build());
}
Aggregations