object SetRequests
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SetRequests
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Type Members
- case class SAdd[W](key: String, members: W*)(implicit writer: Writer[W]) extends Request[Long] with Key with Product with Serializable
- case class SCard(key: String) extends Request[Long] with Key with Product with Serializable
- case class SDiff[R](keys: String*)(implicit evidence$1: Reader[R]) extends Request[Set[R]] with Key with Product with Serializable
- case class SDiffStore(destination: String, keys: String*) extends Request[Long] with Key with Product with Serializable
- case class SInter[R](keys: String*)(implicit evidence$2: Reader[R]) extends Request[Set[R]] with Key with Product with Serializable
- case class SInterStore(destination: String, keys: String*) extends Request[Long] with Key with Product with Serializable
- case class SIsMember[W](key: String, member: W)(implicit evidence$3: Writer[W]) extends Request[Boolean] with Key with Product with Serializable
- case class SMembers[R](key: String)()(implicit evidence$4: Reader[R]) extends Request[Set[R]] with Key with Product with Serializable
- case class SMove[W](source: String, destination: String, member: W)(implicit evidence$5: Writer[W]) extends Request[Boolean] with Product with Serializable
- case class SPop[R](key: String)(implicit evidence$6: Reader[R]) extends Request[Option[R]] with Key with Product with Serializable
- case class SPopCount[R](key: String, count: Int)(implicit evidence$7: Reader[R]) extends Request[List[R]] with Key with Product with Serializable
- case class SRandMember[R](key: String)(implicit evidence$8: Reader[R]) extends Request[Option[R]] with Key with Product with Serializable
- case class SRandMembers[R](key: String, count: Int)()(implicit evidence$9: Reader[R]) extends Request[Set[R]] with Key with Product with Serializable
- case class SRem[W](key: String, members: W*)(implicit writer: Writer[W]) extends Request[Long] with Key with Product with Serializable
- case class SScan[R](key: String, cursor: Long, matchOpt: Option[String], countOpt: Option[Int])(implicit evidence$10: Reader[R]) extends Request[(Long, Set[R])] with Key with Product with Serializable
- case class SUnion[R](keys: String*)(implicit evidence$11: Reader[R]) extends Request[Set[R]] with Key with Product with Serializable
- case class SUnionStore(destination: String, keys: String*) extends Request[Long] with Key with Product with Serializable
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
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- object SAdd extends Command with WriteCommand with Serializable
- object SCard extends Command with Serializable
- object SDiff extends Command with Serializable
- object SDiffStore extends Command with WriteCommand with Serializable
- object SInter extends Command with Serializable
- object SInterStore extends Command with WriteCommand with Serializable
- object SIsMember extends Command with Serializable
- object SMembers extends Command with Serializable
- object SMove extends Command with WriteCommand with Serializable
- object SPop extends Command with WriteCommand with Serializable
- object SRandMember extends Command with Serializable
- object SRem extends Command with WriteCommand with Serializable
- object SScan extends Command with Serializable
- object SUnion extends Command with Serializable
- object SUnionStore extends Command with WriteCommand with Serializable