Module tarpc::server

source ·
Expand description

Provides a server that concurrently handles many connections sending multiplexed requests.

Modules

  • Provides helper methods for streams of Channels.
  • Provides functionality to apply server limits.
  • tokiotokio1
    Provides convenience functionality for tokio-enabled applications.

Structs

Traits

  • The server end of an open connection with a client, receiving requests from, and sending responses to, the client. Channel is a Transport with request lifecycle management.
  • Equivalent to a FnOnce(Req) -> impl Future<Output = Resp>.