1 Star 0 Fork 1

光魔科技/vertx-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Client.java 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
NilsRenaud 提交于 2019-11-05 15:36 . Fix a typo in a logger
package io.vertx.example.grpc.empty;
import io.grpc.ManagedChannel;
import io.vertx.core.AbstractVerticle;
import io.vertx.example.grpc.EmptyPingPongServiceGrpc;
import io.vertx.example.grpc.EmptyProtos;
import io.vertx.example.util.Runner;
import io.vertx.grpc.VertxChannelBuilder;
/*
* @author <a href="mailto:plopes@redhat.com">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() throws Exception {
// Create the channel
ManagedChannel channel = VertxChannelBuilder
.forAddress(vertx, "localhost", 8080)
.usePlaintext(true)
.build();
// Get a stub to use for interacting with the remote service
EmptyPingPongServiceGrpc.EmptyPingPongServiceVertxStub stub = EmptyPingPongServiceGrpc.newVertxStub(channel);
// Make a request
EmptyProtos.Empty request = EmptyProtos.Empty.newBuilder().build();
// Call the remote service
stub.emptyCall(request, ar -> {
if (ar.succeeded()) {
System.out.println("Got the server response.");
} else {
System.out.println("Could not reach server " + ar.cause().getMessage());
}
});
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/3kgz/vertx-examples.git
git@gitee.com:3kgz/vertx-examples.git
3kgz
vertx-examples
vertx-examples
master

搜索帮助