Package

redis

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. case class Bulk(response: Option[ByteString]) extends RedisReply with Product with Serializable

    Permalink
  2. sealed trait DecodeResult[+A] extends AnyRef

    Permalink
  3. case class Error(error: ByteString) extends RedisReply with Product with Serializable

    Permalink
  4. case class FullyDecoded[A](result: A, rest: ByteString) extends DecodeResult[A] with Product with Serializable

    Permalink
  5. case class Integer(i: ByteString) extends RedisReply with Product with Serializable

    Permalink
  6. case class MultiBulk(responses: Option[Vector[RedisReply]]) extends RedisReply with Product with Serializable

    Permalink
  7. case class PartialMultiBulk(i: Int, acc: Buffer[RedisReply]) extends RedisReply with Product with Serializable

    Permalink
  8. case class PartiallyDecoded[A](rest: ByteString, f: (ByteString) ⇒ DecodeResult[A]) extends DecodeResult[A] with Product with Serializable

    Permalink
  9. sealed trait RedisReply extends AnyRef

    Permalink
  10. case class Status(status: ByteString) extends RedisReply with Product with Serializable

    Permalink

Value Members

  1. object DecodeResult

    Permalink
  2. object Integer extends Serializable

    Permalink
  3. object ParseNumber

    Permalink
  4. object RedisProtocolReply

    Permalink
  5. object RedisProtocolRequest

    Permalink
  6. object Status extends Serializable

    Permalink

Ungrouped