Package io.grpc.testing.integration
Interface Messages.StreamingInputCallRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Messages.StreamingInputCallRequest,Messages.StreamingInputCallRequest.Builder
- Enclosing class:
- Messages
public static interface Messages.StreamingInputCallRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Messages.BoolValuegetExpectCompressed()Whether the server should expect this request to be compressed.Messages.BoolValueOrBuildergetExpectCompressedOrBuilder()Whether the server should expect this request to be compressed.Messages.PayloadgetPayload()Optional input payload sent along with the request.Messages.PayloadOrBuildergetPayloadOrBuilder()Optional input payload sent along with the request.booleanhasExpectCompressed()Whether the server should expect this request to be compressed.booleanhasPayload()Optional input payload sent along with the request.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasPayload
boolean hasPayload()
Optional input payload sent along with the request.
.grpc.testing.Payload payload = 1;- Returns:
- Whether the payload field is set.
-
getPayload
Messages.Payload getPayload()
Optional input payload sent along with the request.
.grpc.testing.Payload payload = 1;- Returns:
- The payload.
-
getPayloadOrBuilder
Messages.PayloadOrBuilder getPayloadOrBuilder()
Optional input payload sent along with the request.
.grpc.testing.Payload payload = 1;
-
hasExpectCompressed
boolean hasExpectCompressed()
Whether the server should expect this request to be compressed. This field is "nullable" in order to interoperate seamlessly with servers not able to implement the full compression tests by introspecting the call to verify the request's compression status.
.grpc.testing.BoolValue expect_compressed = 2;- Returns:
- Whether the expectCompressed field is set.
-
getExpectCompressed
Messages.BoolValue getExpectCompressed()
Whether the server should expect this request to be compressed. This field is "nullable" in order to interoperate seamlessly with servers not able to implement the full compression tests by introspecting the call to verify the request's compression status.
.grpc.testing.BoolValue expect_compressed = 2;- Returns:
- The expectCompressed.
-
getExpectCompressedOrBuilder
Messages.BoolValueOrBuilder getExpectCompressedOrBuilder()
Whether the server should expect this request to be compressed. This field is "nullable" in order to interoperate seamlessly with servers not able to implement the full compression tests by introspecting the call to verify the request's compression status.
.grpc.testing.BoolValue expect_compressed = 2;
-
-