com.twitter.finagle.redis.naggati

Stages

object Stages

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Stages
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def emit(obj: AnyRef): NextStep

  9. def ensureBytes(count: Int)(process: (ChannelBuffer) ⇒ NextStep): Stage

    Ensure that a certain number of bytes is buffered before executing the * next step.

  10. def ensureBytesDynamic(getCount: ⇒ Int)(process: (ChannelBuffer) ⇒ NextStep): Stage

    Ensure that a certain number of bytes is buffered before executing the next step, calling getCount each time new data arrives, to recompute the total number of bytes desired.

  11. def ensureDelimiter(delimiter: Byte)(process: (Int, ChannelBuffer) ⇒ NextStep): Stage

    Read bytes until a delimiter is present.

    Read bytes until a delimiter is present. The number of bytes up to and including the delimiter is passed to the next processing step.

  12. def ensureDelimiterDynamic(getDelimiter: ⇒ Byte)(process: (Int, ChannelBuffer) ⇒ NextStep): Stage

    Read bytes until a delimiter is present.

    Read bytes until a delimiter is present. The number of bytes up to and including the delimiter is passed to the next processing step. getDelimiter is called each time new data arrives.

  13. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  14. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  20. final def notify(): Unit

    Definition Classes
    AnyRef
  21. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  22. def proxy(stage: ⇒ Stage): Stage

    Wrap a Stage.

    Wrap a Stage. The wrapped stage will be regenerated on each call.

  23. def readBytes(count: Int)(process: (Array[Byte]) ⇒ NextStep): Stage

    Read count bytes into a byte buffer and pass that buffer to the next step in processing.

  24. def readBytesDynamic(getCount: ⇒ Int)(process: (Array[Byte]) ⇒ NextStep): Stage

    Read a certain number of bytes into a byte buffer and pass that buffer to the next step in processing.

    Read a certain number of bytes into a byte buffer and pass that buffer to the next step in processing. getCount is called each time new data arrives, to recompute * the total number of bytes desired.

  25. def readLine(process: (String) ⇒ NextStep): Stage

    Read a line, terminated by LF or CRLF, and pass that line as a string (decoded using UTF-8, with the line terminators stripped) to the next processing step.

  26. def readLine(removeLF: Boolean)(process: (String) ⇒ NextStep): Stage

    Read a line, terminated by LF or CRLF, and pass that line as a string (decoded using UTF-8) to the next processing step.

    Read a line, terminated by LF or CRLF, and pass that line as a string (decoded using UTF-8) to the next processing step.

    removeLF

    true if the LF or CRLF should be stripped from the string before passing it on

  27. def readLine(removeLF: Boolean, encoding: String)(process: (String) ⇒ NextStep): Stage

    Read a line, terminated by LF or CR/LF, and pass that line as a string to the next processing step.

    Read a line, terminated by LF or CR/LF, and pass that line as a string to the next processing step.

    removeLF

    true if the LF or CRLF should be stripped from the string before passing it on

    encoding

    byte-to-character encoding to use

  28. def readToDelimiter(delimiter: Byte)(process: (Array[Byte]) ⇒ NextStep): Stage

    Read bytes until a delimiter is present, and pass a buffer containing the bytes up to and including the delimiter to the next processing step.

  29. def readToDelimiterDynamic(getDelimiter: ⇒ Byte)(process: (Array[Byte]) ⇒ NextStep): Stage

    Read bytes until a delimiter is present, and pass a buffer containing the bytes up to and including the delimiter to the next processing step.

    Read bytes until a delimiter is present, and pass a buffer containing the bytes up to and including the delimiter to the next processing step. getDelimiter is called each time new data arrives.

  30. def stage(f: (ChannelBuffer) ⇒ NextStep): Stage

    Generate a Stage from a code block.

  31. implicit def stageToNextStep(stage: Stage): NextStep

    Allow a decoder to return a Stage when we expected a NextStep.

  32. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  33. def toString(): String

    Definition Classes
    AnyRef → Any
  34. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped