File tree Expand file tree Collapse file tree 1 file changed +9
-3
lines changed
client-transport/grpc/src/main/java/io/a2a/client/transport/grpc Expand file tree Collapse file tree 1 file changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ /*
12package io.a2a.client.transport.grpc;
23
34import io.a2a.grpc.*;
1920
2021import static io.a2a.util.Assert.checkNotNullParam;
2122
23+ */
2224/**
2325 * @author David BRASSELY (david.brassely at graviteesource.com)
2426 * @author GraviteeSource Team
25- */
27+ */ /*
28+
2629public class GrpcTransport implements Transport {
2730
2831 private A2AServiceGrpc.A2AServiceBlockingV2Stub blockingStub;
2932 private A2AServiceGrpc.A2AServiceStub asyncStub;
3033 private AgentCard agentCard;
3134
32- /**
35+ */
36+ /**
3337 * Create an A2A client for interacting with an A2A agent via gRPC.
3438 *
3539 * @param channel the gRPC channel
3640 * @param agentCard the agent card for the A2A server this client will be communicating with
37- */
41+ */ /*
42+
3843 public GrpcTransport(Channel channel, AgentCard agentCard) {
3944 checkNotNullParam("channel", channel);
4045 checkNotNullParam("agentCard", agentCard);
@@ -162,3 +167,4 @@ private String getTaskPushNotificationConfigName(GetTaskPushNotificationConfigPa
162167 return name.toString();
163168 }
164169}
170+ */
You can’t perform that action at this time.
0 commit comments