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."],[[["This page provides reference documentation for the `Tether.TetherBase` class, a base class for server-side implementations of the `Tether` in the Apigee Connect v1 API."],["The documentation covers various versions of the API, ranging from version 1.0.0 to the latest version, 2.4.0, with links to each version's documentation."],["`Tether.TetherBase` inherits from `object` and includes inherited members like `GetHashCode()`, `GetType()`, `MemberwiseClone()`, and `ToString()`."],["The class includes one method, `Egress`, which handles the streaming of egress requests and responses between a listener (server) and a dialer (client) using gRPC."],["The `Egress` method takes an `IAsyncStreamReader\u003cEgressResponse\u003e` for reading requests, an `IServerStreamWriter\u003cEgressRequest\u003e` for sending responses, and a `ServerCallContext` for context, and returns a `Task` to indicate completion."]]],[]]