Package sass.embedded_protocol
Interface EmbeddedSass.InboundMessage.FunctionCallResponseOrBuilder
-
- All Superinterfaces:
MessageLiteOrBuilder
,MessageOrBuilder
- All Known Implementing Classes:
EmbeddedSass.InboundMessage.FunctionCallResponse
,EmbeddedSass.InboundMessage.FunctionCallResponse.Builder
- Enclosing class:
- EmbeddedSass.InboundMessage
public static interface EmbeddedSass.InboundMessage.FunctionCallResponseOrBuilder extends MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getError()
An error message explaining why the function call failed.ByteString
getErrorBytes()
An error message explaining why the function call failed.int
getId()
uint32 id = 1;
EmbeddedSass.InboundMessage.FunctionCallResponse.ResultCase
getResultCase()
EmbeddedSass.Value
getSuccess()
The return value of a successful function call.EmbeddedSass.ValueOrBuilder
getSuccessOrBuilder()
The return value of a successful function call.boolean
hasError()
An error message explaining why the function call failed.boolean
hasSuccess()
The return value of a successful function call.-
Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder
isInitialized
-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getId
int getId()
uint32 id = 1;
- Returns:
- The id.
-
hasSuccess
boolean hasSuccess()
The return value of a successful function call.
.sass.embedded_protocol.Value success = 2;
- Returns:
- Whether the success field is set.
-
getSuccess
EmbeddedSass.Value getSuccess()
The return value of a successful function call.
.sass.embedded_protocol.Value success = 2;
- Returns:
- The success.
-
getSuccessOrBuilder
EmbeddedSass.ValueOrBuilder getSuccessOrBuilder()
The return value of a successful function call.
.sass.embedded_protocol.Value success = 2;
-
hasError
boolean hasError()
An error message explaining why the function call failed.
string error = 3;
- Returns:
- Whether the error field is set.
-
getError
String getError()
An error message explaining why the function call failed.
string error = 3;
- Returns:
- The error.
-
getErrorBytes
ByteString getErrorBytes()
An error message explaining why the function call failed.
string error = 3;
- Returns:
- The bytes for error.
-
getResultCase
EmbeddedSass.InboundMessage.FunctionCallResponse.ResultCase getResultCase()
-
-