ListPushPop

dev.profunktor.redis4cats.algebra.ListPushPop
trait ListPushPop[F[_], K, V]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
trait ListCommands[F, K, V]
trait RedisCommands[F, K, V]

Members list

Value members

Abstract methods

def lPop(key: K): F[Option[V]]
def lPush(key: K, values: V*): F[Long]
def lPushX(key: K, values: V*): F[Long]
def rPop(key: K): F[Option[V]]
def rPopLPush(source: K, destination: K): F[Option[V]]
def rPush(key: K, values: V*): F[Long]
def rPushX(key: K, values: V*): F[Long]