gRPC is a language-neutral, platform-neutral, and open source remote RPC system and supports the service methods of unary RPCs and streaming RPCs. Which of the following service methods are not supported by gRPC? (Choose all that apply.)
A.
rpc Cancel(CancelArgs) returns(Cancel Reply) {};
B.
rpc Subscribe(SubsArgs) stream returns(Subs Reply) {};
C.
rpc stream LotsOfGreetings(HelloRequest) returns (HelloResponse) {};
D.
rpc dataPublish(stream serviceArgs) returns(stream serviceArgs) {};
The syntax is not correct in b and c
must be:
B. rpc Subscribe(SubsArgs) returns(stream SubsReply) {};
C. rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {};
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
6702b63
1 month, 1 week ago6702b63
1 month, 1 week ago7c3a129
10 months, 2 weeks ago