Interface Protocol.FailureOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Protocol.Failure,Protocol.Failure.Builder
- Enclosing class:
- Protocol
public static interface Protocol.FailureOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetCode()The code should be any of the gRPC error codes, as defined here: https://github.com/grpc/grpc/blob/master/doc/statuscodes.md#status-codes-and-their-use-in-grpc If code > 16, the runtime will interpret it as code 2 (UNKNOWN).java.lang.StringgetMessage()Contains a concise error message, e.g.com.google.protobuf.ByteStringgetMessageBytes()Contains a concise error message, e.g.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getCode
int getCode()
The code should be any of the gRPC error codes, as defined here: https://github.com/grpc/grpc/blob/master/doc/statuscodes.md#status-codes-and-their-use-in-grpc If code > 16, the runtime will interpret it as code 2 (UNKNOWN).
uint32 code = 1;- Returns:
- The code.
-
getMessage
java.lang.String getMessage()
Contains a concise error message, e.g. Throwable#getMessage() in Java.
string message = 2;- Returns:
- The message.
-
getMessageBytes
com.google.protobuf.ByteString getMessageBytes()
Contains a concise error message, e.g. Throwable#getMessage() in Java.
string message = 2;- Returns:
- The bytes for message.
-
-