Get desktop application:
View/edit binary Protocol Buffers messages
An Entry represents a single RPC activity, typically a request or response.
method name
request, response or error status
was response an error?
for RESPONSE, index of matching request;
Used in:
A unary request. method: the full name of the method message: the request proto is_error: false ref_index: 0
A unary response. method: the full name of the method message: if is_error: a google.rpc.Status proto else: the response proto ref_index: index in the sequence of Entries of matching request (1-based)
A method that creates a stream. method: the full name of the method message: if is_error: a google.rpc.Status proto else: nil ref_index: 0
A call to Send on the client returned by a stream-creating method. method: unset message: the proto being sent is_error: false ref_index: index of matching CREATE_STREAM entry (1-based)
message sent on stream
A call to Recv on the client returned by a stream-creating method. method: unset message: if is_error: a google.rpc.Status proto, or nil on EOF else: the received message ref_index: index of matching CREATE_STREAM entry
message received from stream