PubSubCommands

dev.profunktor.redis4cats.pubsub.PubSubCommands
trait PubSubCommands[F[_], K, V] extends PublishCommands[F, K, V], SubscribeCommands[F, K, V]

Attributes

Graph
Supertypes
trait SubscribeCommands[F, K, V]
trait PublishCommands[F, K, V]
trait PubSubStats[F, K]
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def psubscribe(channel: RedisPattern[K]): F[RedisPatternEvent[K, V]]

Attributes

Inherited from:
SubscribeCommands
def pubSubChannels: F[List[K]]

Attributes

Inherited from:
PubSubStats
def pubSubSubscriptions(channels: List[RedisChannel[K]]): F[List[Subscription[K]]]

Attributes

Inherited from:
PubSubStats
def pubSubSubscriptions(channel: RedisChannel[K]): F[Subscription[K]]

Attributes

Inherited from:
PubSubStats
def publish(channel: RedisChannel[K]): F[V] => F[Unit]

Attributes

Inherited from:
PublishCommands
def punsubscribe(channel: RedisPattern[K]): F[Unit]

Attributes

Inherited from:
SubscribeCommands
def subscribe(channel: RedisChannel[K]): F[V]

Attributes

Inherited from:
SubscribeCommands
def unsubscribe(channel: RedisChannel[K]): F[Unit]

Attributes

Inherited from:
SubscribeCommands