public virtual Task Egress(IAsyncStreamReader<EgressResponse> requestStream, IServerStreamWriter<EgressRequest> responseStream, ServerCallContext context)
Egress streams egress requests and responses. Logically, this is not
actually a streaming request, but uses streaming as a mechanism to flip
the client-server relationship of gRPC so that the server can act as a
client.
The listener, the RPC server, accepts connections from the dialer,
the RPC client.
The listener streams http requests and the dialer streams http responses.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-21 UTC."],[[["Version 2.0.0 of the `TetherBase` class is part of the `Google.Cloud.ApigeeConnect.V1` namespace and is the base class for server-side implementations of `Tether`."],["The latest version available is 2.4.0, with versions ranging down to 1.0.0, all providing different iterations of `TetherBase`."],["`TetherBase` inherits from `Object` and includes inherited members such as `GetHashCode()`, `GetType()`, `MemberwiseClone()`, and `ToString()`."],["The class includes a method called `Egress`, which handles the streaming of egress requests and responses between a listener (server) and a dialer (client)."],["The Egress method uses an IAsyncStreamReader for reading requests, and an IServerStreamWriter to send responses, and accepts the ServerCallContext of the call handler."]]],[]]