Packages

final class Transaction[+A] extends SinglePackBatch[A]

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Transaction
  2. SinglePackBatch
  3. RawCommandPack
  4. RawCommandPacks
  5. RedisBatch
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Transaction(batch: RedisBatch[A])

Value Members

  1. def *>[B](other: RedisBatch[B]): RedisBatch[B]

    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
  2. def <*[B](other: RedisBatch[B]): RedisBatch[A]

    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
  3. def <*>[B, C](other: RedisBatch[B])(f: (A, B) ⇒ C): RedisBatch[C]

    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
  4. def asking: RedisBatch[A]

    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
  5. def atomic: RedisBatch[A]

    Returns a batch which invokes the same commands as this batch but atomically.

    Returns a batch which invokes the same commands as this batch but atomically. If this batch is already atomic then it's returned unchanged. Otherwise, it's wrapped into a Redis transaction (MULTI-EXEC block). Empty batches, single-command batches and transactions are atomic by themselves and therefore are returned unchanged.

    Definition Classes
    RedisBatch
  6. def checkLevel(minAllowed: Level, clientType: String): Unit
    Definition Classes
    TransactionRawCommandPack
  7. final def computeSize(limit: Int): Int
    Definition Classes
    RawCommandPackRawCommandPacks
  8. def createPreprocessor(replyCount: Int): ReplyPreprocessor
    Definition Classes
    TransactionRawCommandPack
  9. def decodeReplies(replies: (Int) ⇒ RedisReply, index: Index, inTransaction: Boolean): A
    Definition Classes
    TransactionRedisBatch
  10. final def emitCommandPacks(consumer: (RawCommandPack) ⇒ Unit): Unit
    Definition Classes
    RawCommandPackRawCommandPacks
  11. final def encodedSize: Int
    Definition Classes
    RawCommandPacks
  12. def failed: RedisBatch[Throwable]
    Definition Classes
    RedisBatch
  13. final def foreachKey(consumer: (ByteString) ⇒ Unit): Unit
    Definition Classes
    RawCommandPacks
  14. def ignoreFailures: RedisBatch[Unit]
    Definition Classes
    RedisBatch
  15. def isAsking: Boolean
    Definition Classes
    RawCommandPack
  16. def map[B](f: (A) ⇒ B): RedisBatch[B]
    Definition Classes
    RedisBatch
  17. def map2[B, C](other: RedisBatch[B])(f: (A, B) ⇒ C): RedisBatch[C]

    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
  18. def maxBlockingMillis: Int

    Maximum amount of time that these command packs may block on Redis side (like e.g.

    Maximum amount of time that these command packs may block on Redis side (like e.g. BLPOP). This method is overridden for RawCommand to return 0 and should be further overridden by each blocking command. Int.MaxValue should be returned for unlimited blocking.

    Definition Classes
    TransactionRawCommandPacks
  19. def operation: RedisOp[A]

    Transforms this batch into a RedisOp.

    Transforms this batch into a RedisOp.

    Definition Classes
    RedisBatch
  20. final def rawCommandPacks: RawCommandPacks
    Definition Classes
    SinglePackBatchRedisBatch
  21. def rawCommands(inTransaction: Boolean): RawCommands
    Definition Classes
    TransactionRawCommandPack
  22. def recover[B >: A](f: PartialFunction[Throwable, B]): RedisBatch[B]
    Definition Classes
    RedisBatch
  23. final def requireLevel(minAllowed: Level, clientType: String): Transaction.this.type
    Definition Classes
    RawCommandPacks
  24. def transaction: Transaction[A]

    Wraps this batch into a Redis transaction, i.e.

    Wraps this batch into a Redis transaction, i.e. ensures that it's executed inside a MULTI-EXEC block. NOTE: If you simply want to ensure atomicity, use atomic. NOTE: You can safely nest transactions, the driver will make sure that there are no nested MULTI-EXEC blocks on the wire.

    Definition Classes
    TransactionRedisBatch
  25. def transform[B](fun: (commons.Try[A]) ⇒ commons.Try[B]): RedisBatch[B]
    Definition Classes
    RedisBatch
  26. def tried: RedisBatch[commons.Try[A]]
    Definition Classes
    RedisBatch
  27. def zip[B](other: RedisBatch[B]): RedisBatch[(A, B)]
    Definition Classes
    RedisBatch