Package

com.twitter.finagle.redis

naggati

Permalink

package naggati

Visibility
  1. Public
  2. All

Type Members

  1. class Codec[A] extends FrameDecoder with ChannelDownstreamHandler

    Permalink

    A netty ChannelHandler for decoding data into protocol objects on the way in, and packing objects into byte arrays on the way out.

    A netty ChannelHandler for decoding data into protocol objects on the way in, and packing objects into byte arrays on the way out. Optionally, the bytes in/out are tracked.

  2. case class Emit(obj: AnyRef) extends NextStep with Product with Serializable

    Permalink
  3. trait Encoder[A] extends AnyRef

    Permalink

    An Encoder turns things of type A into ChannelBuffers, for outbound traffic (server responses or client requests).

  4. case class GoToStage(stage: Stage) extends NextStep with Product with Serializable

    Permalink
  5. sealed trait NextStep extends AnyRef

    Permalink

    The next step for processing after this stage.

    The next step for processing after this stage. - Incomplete: Need more data; call the same stage again later when more data arrives. - GoToStage(stage): Finished with this stage; continue with another stage. - Emit(obj): Complete protocol object decoded; return to the first stage and start a new object.

  6. class ProtocolError extends Exception

    Permalink
  7. trait Stage extends AnyRef

    Permalink

    A decoder stage.

Value Members

  1. object Codec

    Permalink
  2. object DontCareCounter extends (Int) ⇒ Unit

    Permalink
  3. object Incomplete extends NextStep with Product with Serializable

    Permalink
  4. object Stages

    Permalink
  5. package codec

    Permalink
  6. package test

    Permalink

Ungrouped