com.twitter.finagle

dispatch

package dispatch

Visibility
  1. Public
  2. All

Type Members

  1. abstract class GenSerialClientDispatcher[Req, Rep, In, Out] extends Service[Req, Rep]

    Dispatch requests one at a time; concurrent requests are queued.

  2. abstract class GenSerialServerDispatcher[Req, Rep, In, Out] extends Closable

    A generic version of SerialServerDispatcher, allowing the implementor to furnish custom dispatchers & handlers.

  3. class PipeliningDispatcher[Req, Rep] extends GenSerialClientDispatcher[Req, Rep, Req, Rep]

    A generic pipelining dispatcher, which assumes that servers will respect normal pipelining semantics, and that replies will be sent in the same order as requests were sent.

  4. class SerialClientDispatcher[Req, Rep] extends GenSerialClientDispatcher[Req, Rep, Req, Rep]

  5. class SerialServerDispatcher[Req, Rep] extends GenSerialServerDispatcher[Req, Rep, Rep, Req]

    Dispatch requests from transport one at a time, queueing concurrent requests.

Ungrouped