object RedisTransaction extends Serializable
- Source
- RedisTransaction.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- RedisTransaction
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- class MultiExecPartiallyApplied[F[_]] extends AnyRef
- final case class Queued[A](f: (Chunk[Resp]) ⇒ Either[Resp, A]) extends Product with Serializable
- final case class RedisTxState[A](value: State[(Int, List[NonEmptyList[ByteVector]], Option[ByteVector]), A]) extends Product with Serializable
-
sealed
trait
TxResult[+A] extends AnyRef
A TxResult Represent the state of a RedisTransaction when run.
A TxResult Represent the state of a RedisTransaction when run. Success means it completed succesfully, Aborted means we received a Nil Arrary from Redis which represent that at least one key being watched has been modified. An error occurs depending on the succesful execution of the function built in Queued.
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- implicit val applicative: Applicative[RedisTransaction]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- implicit val ctx: RedisCtx[RedisTransaction]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def multiExec[F[_]]: MultiExecPartiallyApplied[F]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
- def unwatch[F[_]](implicit arg0: Concurrent[F]): Redis[F, Status]
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
- def watch[F[_]](keys: List[String])(implicit arg0: Concurrent[F]): Redis[F, Status]
- object Queued extends Serializable
- object RedisTxState extends Serializable
- object TxResult