Package

com.twitter.finagle

dispatch

Permalink

package dispatch

Visibility
  1. Public
  2. All

Type Members

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

    Permalink

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

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

    Permalink

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

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

    Permalink

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

    Permalink

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

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

    Transport errors are considered fatal; the service will be released after any error.

Ungrouped