1 Star 0 Fork 2

githubsync/vertx-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
ClientWithStub.java 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
Julien Viet 提交于 2022-05-24 20:36 +08:00 . New gRPC examples
package io.vertx.example.grpc.empty;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.net.SocketAddress;
import io.vertx.example.grpc.EmptyProtos;
import io.vertx.example.grpc.VertxEmptyPingPongServiceGrpc;
import io.vertx.example.util.Runner;
import io.vertx.grpc.client.GrpcClient;
import io.vertx.grpc.client.GrpcClientChannel;
/*
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a>
*/
public class ClientWithStub extends AbstractVerticle {
// Convenience method so you can run it in your IDE
public static void main(String[] args) {
Runner.runExample(ClientWithStub.class);
}
@Override
public void start() {
// Create the channel
GrpcClient client = GrpcClient.client(vertx);
GrpcClientChannel channel = new GrpcClientChannel(client, SocketAddress.inetSocketAddress(8080, "localhost"));
// Get a stub to use for interacting with the remote service
VertxEmptyPingPongServiceGrpc.EmptyPingPongServiceVertxStub stub = VertxEmptyPingPongServiceGrpc.newVertxStub(channel);
// Make a request
EmptyProtos.Empty request = EmptyProtos.Empty.newBuilder().build();
// Call the remote service
stub.emptyCall(request).onComplete(ar -> {
if (ar.succeeded()) {
System.out.println("Got the server response.");
} else {
System.out.println("Could not reach server " + ar.cause().getMessage());
}
});
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/githubsync/vertx-examples.git
git@gitee.com:githubsync/vertx-examples.git
githubsync
vertx-examples
vertx-examples
4.x

搜索帮助