public enum BodySendModeReference documentation and code samples for the Network Services v1 API enum BodySendMode.
The send mode for body processing.
Namespace
Google.Cloud.NetworkServices.V1Assembly
Google.Cloud.NetworkServices.V1.dll
Fields |
|
|---|---|
| Name | Description |
FullDuplexStreamed |
Calls are executed in the full duplex mode. Subsequent chunks will be sent
for processing without waiting for the response for the previous chunk or
for the response for Extension can freely modify or chunk the body contents. If the extension doesn't send the body contents back, the next extension in the chain or the upstream will receive an empty body. |
Streamed |
Calls to the extension are executed in the streamed mode. Subsequent chunks will be sent only after the previous chunks have been processed. The content of the body chunks is sent one way to the extension. Extension may send modified chunks back. This is the default value if the processing mode is not specified. |
Unspecified |
Default value. Do not use. |