Packages

p

redis

protocol

package protocol

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. case class Bulk(response: Option[ByteString]) extends RedisReply with Product with Serializable
  2. sealed trait DecodeResult[+A] extends AnyRef
  3. case class Error(error: ByteString) extends RedisReply with Product with Serializable
  4. case class FullyDecoded[A](result: A, rest: ByteString) extends DecodeResult[A] with Product with Serializable
  5. case class Integer(i: ByteString) extends RedisReply with Product with Serializable
  6. case class MultiBulk(responses: Option[Vector[RedisReply]]) extends RedisReply with Product with Serializable
  7. case class PartialMultiBulk(i: Int, acc: Buffer[RedisReply]) extends RedisReply with Product with Serializable
  8. case class PartiallyDecoded[A](rest: ByteString, f: (ByteString) ⇒ DecodeResult[A]) extends DecodeResult[A] with Product with Serializable
  9. sealed trait RedisReply extends Product with Serializable
  10. case class Status(status: ByteString) extends RedisReply with Product with Serializable

Ungrouped