代码拉取完成,页面将自动刷新
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();
});
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。