Package

com.avsystem.commons.redis

protocol

Permalink

package protocol

Visibility
  1. Public
  2. All

Type Members

  1. final case class ArrayMsg[+E <: RedisMsg](elements: IndexedSeq[E]) extends ValidRedisMsg with Product with Serializable

    Permalink
  2. sealed case class BulkStringMsg(string: ByteString) extends ValidRedisMsg with Product with Serializable

    Permalink
  3. final class CommandKeyMsg extends BulkStringMsg

    Permalink
  4. final case class ErrorMsg(errorString: ByteString) extends RedisMsg with Product with Serializable

    Permalink
  5. trait FailureReply extends RedisReply

    Permalink
  6. final case class IntegerMsg(value: Long) extends ValidRedisMsg with Product with Serializable

    Permalink
  7. sealed trait RedisMsg extends RedisReply

    Permalink

    Redis protocol message.

    Redis protocol message. It can be sent over network from or to Redis instance.

  8. sealed trait RedisReply extends AnyRef

    Permalink

    Raw result of executing a single com.avsystem.commons.redis.RawCommandPack.

    Raw result of executing a single com.avsystem.commons.redis.RawCommandPack. It may be a Redis protocol message (RedisMsg) or an object that aggregates transaction results or an object that indicates failure.

  9. case class SimpleStringMsg(string: ByteString) extends ValidRedisMsg with Product with Serializable

    Permalink
  10. final case class TransactionReply(elements: IndexedSeq[RedisMsg]) extends RedisReply with Product with Serializable

    Permalink
  11. sealed trait ValidRedisMsg extends RedisMsg

    Permalink

Value Members

  1. object ArrayMsg extends Serializable

    Permalink
  2. object CommandKeyMsg extends Serializable

    Permalink
  3. object ErrorMsg extends Serializable

    Permalink
  4. object FailureReply

    Permalink
  5. object NullArrayMsg extends ValidRedisMsg with Product with Serializable

    Permalink
  6. object NullBulkStringMsg extends ValidRedisMsg with Product with Serializable

    Permalink
  7. object RedisMsg

    Permalink
  8. object SimpleStringMsg extends Serializable

    Permalink
  9. object SimpleStringStr

    Permalink

Ungrouped