代码拉取完成,页面将自动刷新
package io.vertx.example.grpc.consumer;
import io.vertx.core.AbstractVerticle;
import io.vertx.core.net.SocketAddress;
import io.vertx.example.grpc.Messages;
import io.vertx.example.grpc.VertxConsumerServiceGrpc;
import io.vertx.example.util.Runner;
import io.vertx.grpc.client.GrpcClient;
import io.vertx.grpc.client.GrpcClientChannel;
import java.nio.charset.StandardCharsets;
/*
* @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
VertxConsumerServiceGrpc.ConsumerServiceVertxStub stub = VertxConsumerServiceGrpc.newVertxStub(channel);
// Make a request
Messages.StreamingOutputCallRequest request = Messages
.StreamingOutputCallRequest
.newBuilder()
.build();
// Call the remote service
stub.streamingOutputCall(request).handler(response -> {
System.out.println(new String(response.getPayload().toByteArray(), StandardCharsets.UTF_8));
}).endHandler(v -> {
System.out.println("Response has ended.");
});
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。