Class

com.avsystem.commons.redis

RedisPositiveLongCommand

Related Doc: package redis

Permalink

abstract class RedisPositiveLongCommand extends AbstractRedisCommand[Opt[Long]]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RedisPositiveLongCommand
  2. AbstractRedisCommand
  3. RedisCommand
  4. RawCommand
  5. ReplyPreprocessor
  6. RawCommands
  7. AtomicBatch
  8. RawCommandPack
  9. RawCommandPacks
  10. RedisBatch
  11. AnyRef
  12. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new RedisPositiveLongCommand()

    Permalink

Abstract Value Members

  1. abstract def encoded: ArrayMsg[BulkStringMsg]

    Permalink
    Definition Classes
    RawCommand
  2. abstract def level: Level

    Permalink
    Definition Classes
    RawCommand

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def *>[B](other: RedisBatch[B]): RedisBatch[B]

    Permalink

    Merges two batches into a single batch where result of the right-hand-side batch is returned while result of left-hand-side is discarded.

    Merges two batches into a single batch where result of the right-hand-side batch is returned while result of left-hand-side is discarded. Useful when left-hand-side returns Unit. NOTE: errors for left-hand-side are NOT discarded, use ignoreFailures on it if that's your intention.

    Definition Classes
    RedisBatch
  4. def <*[B](other: RedisBatch[B]): RedisBatch[Opt[Long]]

    Permalink

    Merges two batches into a single batch where result of the left-hand-side batch is returned while result of right-hand-side is discarded.

    Merges two batches into a single batch where result of the left-hand-side batch is returned while result of right-hand-side is discarded. Useful when right-hand-side returns Unit. NOTE: errors for right-hand-side are NOT discarded, use ignoreFailures on it if that's your intention.

    Definition Classes
    RedisBatch
  5. def <*>[B, C](other: RedisBatch[B])(f: (Opt[Long], B) ⇒ C): RedisBatch[C]

    Permalink

    This is a symbolic alias for map2.

    This is a symbolic alias for map2. The symbol (along with *> and <*) is inspired by its Haskell equivalent.

    Definition Classes
    RedisBatch
  6. final def ==(arg0: Any): Boolean

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

    Permalink
    Definition Classes
    Any
  8. def asking: RedisBatch[Opt[Long]]

    Permalink

    Ensures that every keyed command in this batch is prepended with ASKING special command.

    Ensures that every keyed command in this batch is prepended with ASKING special command. This is necessary only when manually handling Redis Cluster redirections.

    Definition Classes
    RedisBatch
  9. def atomic: RedisBatch[Opt[Long]]

    Permalink

    Ensures that this batch is atomic, i.e.

    Ensures that this batch is atomic, i.e. it's either a single Redis command or is executed inside a MULTI-EXEC block.

    Definition Classes
    AtomicBatchRedisBatch
  10. def checkLevel(minAllowed: Level, clientType: String): Unit

    Permalink
    Definition Classes
    RawCommandRawCommandPack
  11. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  12. def createPreprocessor(replyCount: Int): RawCommand

    Permalink
    Definition Classes
    RawCommandRawCommandPack
  13. def decode(replyMsg: RedisReply): Opt[Long]

    Permalink
    Attributes
    protected
    Definition Classes
    RedisCommand
  14. val decodeExpected: ReplyDecoder[Opt[Long]]

    Permalink
    Attributes
    protected
    Definition Classes
    AbstractRedisCommandRedisCommand
  15. def decodeReplies(replies: (Int) ⇒ RedisReply, idx: Index, inTransaction: Boolean): Opt[Long]

    Permalink
    Definition Classes
    RedisCommandRedisBatch
  16. def emitCommandPacks(consumer: (RawCommandPack) ⇒ Unit): Unit

    Permalink
    Definition Classes
    RawCommandPackRawCommandPacks
  17. def emitCommands(consumer: (RawCommand) ⇒ Unit): Unit

    Permalink
    Definition Classes
    RawCommandRawCommands
  18. final def encodedSize: Int

    Permalink
    Definition Classes
    RawCommandPacks
  19. def encoder(commandName: String*): CommandEncoder

    Permalink
    Attributes
    protected
    Definition Classes
    RawCommand
  20. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  22. def failed: RedisBatch[Throwable]

    Permalink
    Definition Classes
    RedisBatch
  23. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  24. def foreachKey(consumer: (ByteString) ⇒ Unit): Unit

    Permalink
    Definition Classes
    RawCommandPacks
  25. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  27. def ignoreFailures: RedisBatch[Unit]

    Permalink
    Definition Classes
    RedisBatch
  28. def isAsking: Boolean

    Permalink
    Definition Classes
    RawCommandPack
  29. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  30. def map[B](fun: (Opt[Long]) ⇒ B): RedisCommand[B]

    Permalink
    Definition Classes
    RedisCommandRedisBatch
  31. def map2[B, C](other: RedisBatch[B])(f: (Opt[Long], B) ⇒ C): RedisBatch[C]

    Permalink

    Merges two batches into one.

    Merges two batches into one. Provided function is applied on results of the batches being merged to obtain result of the merged batch. map2 is the fundamental primitive for composing multiple batches into one.

    Definition Classes
    RedisBatch
  32. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  35. def operation: RedisOp[Opt[Long]]

    Permalink

    Transforms this batch into a RedisOp.

    Transforms this batch into a RedisOp.

    Definition Classes
    RedisBatch
  36. def preprocess(message: RedisMsg, state: WatchState): Opt[RedisMsg]

    Permalink
    Definition Classes
    RawCommandReplyPreprocessor
  37. def rawCommandPacks: AtomicBatch[Opt[Long]]

    Permalink
    Definition Classes
    AtomicBatchRedisBatch
  38. def rawCommands(inTransaction: Boolean): RawCommand

    Permalink
    Definition Classes
    RawCommandRawCommandPack
  39. def recover[B >: Opt[Long]](f: PartialFunction[Throwable, B]): RedisBatch[B]

    Permalink
    Definition Classes
    RedisBatch
  40. def requireLevel(minAllowed: Level, clientType: String): RedisPositiveLongCommand.this.type

    Permalink
    Definition Classes
    RawCommandPacks
  41. def requireNonEmpty(seq: TraversableOnce[Any], what: String): Unit

    Permalink
    Attributes
    protected
    Definition Classes
    RedisCommand
  42. def single: Opt[RawCommandPack]

    Permalink
    Definition Classes
    RawCommandPackRawCommandPacks
  43. final def synchronized[T0](arg0: ⇒ T0): T0

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

    Permalink
    Definition Classes
    RedisCommand → AnyRef → Any
  45. def transaction: RedisBatch[Opt[Long]]

    Permalink

    Ensures that this batch is executed inside a MULTI-EXEC block.

    Ensures that this batch is executed inside a MULTI-EXEC block.

    Definition Classes
    RedisBatch
  46. def transform[B](fun: (Try[Opt[Long]]) ⇒ Try[B]): RedisBatch[B]

    Permalink
    Definition Classes
    RedisBatch
  47. def tried: RedisBatch[Try[Opt[Long]]]

    Permalink
    Definition Classes
    RedisBatch
  48. def updateWatchState(message: RedisMsg, state: WatchState): Unit

    Permalink
    Definition Classes
    RawCommand
  49. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. def zip[B](other: RedisBatch[B]): RedisBatch[(Opt[Long], B)]

    Permalink
    Definition Classes
    RedisBatch

Inherited from AbstractRedisCommand[Opt[Long]]

Inherited from RedisCommand[Opt[Long]]

Inherited from RawCommand

Inherited from ReplyPreprocessor

Inherited from RawCommands

Inherited from AtomicBatch[Opt[Long]]

Inherited from RawCommandPack

Inherited from RawCommandPacks

Inherited from RedisBatch[Opt[Long]]

Inherited from AnyRef

Inherited from Any

Ungrouped