Object

com.twitter.finagle.redis.naggati

Stages

Related Doc: package naggati

Permalink

object Stages

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Stages
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

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

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

    Permalink

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

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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.

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

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

    Permalink

    Wrap a Stage.

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

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

    Permalink

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

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    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

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

    Permalink

    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

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

    Permalink

    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.

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

    Permalink

    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.

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

    Permalink

    Generate a Stage from a code block.

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

    Permalink

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

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

    Permalink
    Definition Classes
    AnyRef
  31. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped