trait Lists extends Request
Ordering
- Alphabetic
- By Inheritance
Inherited
- Lists
- Request
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- implicit abstract val executionContext: ExecutionContext
- Definition Classes
- Request
- abstract def send[T](redisCommand: RedisCommand[_ <: RedisReply, T]): Future[T]
- Definition Classes
- Request
Concrete 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
- def lindex[R](key: String, index: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- def linsert[V](key: String, beforeAfter: ListPivot, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def linsertAfter[V](key: String, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def linsertBefore[V](key: String, pivot: String, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def llen(key: String): Future[Long]
- def lpop[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- def lpush[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def lpushx[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def lrange[R](key: String, start: Long, stop: Long)(implicit arg0: ByteStringDeserializer[R]): Future[Seq[R]]
- def lrem[V](key: String, count: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def lset[V](key: String, index: Long, value: V)(implicit arg0: ByteStringSerializer[V]): Future[Boolean]
- def ltrim(key: String, start: Long, stop: Long): Future[Boolean]
- 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()
- def rpop[R](key: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- def rpoplpush[R](source: String, destination: String)(implicit arg0: ByteStringDeserializer[R]): Future[Option[R]]
- def rpush[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- def rpushx[V](key: String, values: V*)(implicit arg0: ByteStringSerializer[V]): Future[Long]
- 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()