Ai
1 Star 0 Fork 2

githubsync/vertx-examples

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Server.java 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
Julien Viet 提交于 2022-05-24 16:56 +08:00 . Use the new Vert.x gRPC version
package io.vertx.example.grpc.pingpong;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.Future;
import io.vertx.example.grpc.Messages;
import io.vertx.example.grpc.VertxPingPongServiceGrpc;
import io.vertx.example.util.Runner;
import io.vertx.grpc.server.GrpcServer;
import io.vertx.grpc.server.GrpcServiceBridge;
/*
* @author <a href="mailto:plopes@redhat.com">Paulo Lopes</a>
*/
public class Server extends AbstractVerticle {
// Convenience method so you can run it in your IDE
public static void main(String[] args) {
Runner.runExample(Server.class);
}
@Override
public void start() {
// The rpc service
VertxPingPongServiceGrpc.PingPongServiceVertxImplBase service = new VertxPingPongServiceGrpc.PingPongServiceVertxImplBase() {
@Override
public Future<Messages.SimpleResponse> unaryCall(Messages.SimpleRequest request) {
return Future.succeededFuture(Messages.SimpleResponse.newBuilder().setUsername("Paulo").build());
}
};
// Create the server
GrpcServer rpcServer = GrpcServer.server(vertx);
GrpcServiceBridge
.bridge(service)
.bind(rpcServer);
// start the server
vertx.createHttpServer().requestHandler(rpcServer).listen(8080)
.onFailure(cause -> {
cause.printStackTrace();
});
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/githubsync/vertx-examples.git
git@gitee.com:githubsync/vertx-examples.git
githubsync
vertx-examples
vertx-examples
4.x

搜索帮助