Interface ExternalProcessor.Interface
-
- All Known Implementing Classes:
ExternalProcessor.Stub
- Enclosing class:
- ExternalProcessor
public static interface ExternalProcessor.Interface
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidprocess(com.google.protobuf.RpcController controller, ProcessingRequest request, com.google.protobuf.RpcCallback<ProcessingResponse> done)This begins the bidirectional stream that Envoy will use to give the server control over what the filter does.
-
-
-
Method Detail
-
process
void process(com.google.protobuf.RpcController controller, ProcessingRequest request, com.google.protobuf.RpcCallback<ProcessingResponse> done)This begins the bidirectional stream that Envoy will use to give the server control over what the filter does. The actual protocol is described by the ProcessingRequest and ProcessingResponse messages below.
rpc Process(stream .envoy.service.ext_proc.v3.ProcessingRequest) returns (stream .envoy.service.ext_proc.v3.ProcessingResponse);
-
-