Module: Redis::Commands::Pubsub
- Included in:
- Redis::Commands
- Defined in:
- sig/redis.rbs
Instance Method Summary collapse
- #psubscribe {|arg0| ... } ⇒ Object
- #psubscribe_with_timeout {|arg0| ... } ⇒ Object
- #publish ⇒ Object
- #pubsub ⇒ Object
- #punsubscribe ⇒ Object
- #spublish ⇒ Object
- #ssubscribe {|arg0| ... } ⇒ Object
- #ssubscribe_with_timeout {|arg0| ... } ⇒ Object
- #subscribe {|arg0| ... } ⇒ Object
- #subscribe_with_timeout {|arg0| ... } ⇒ Object
- #subscribed? ⇒ Boolean
- #sunsubscribe ⇒ Object
- #unsubscribe ⇒ Object
Instance Method Details
#psubscribe {|arg0| ... } ⇒ Object
452 |
# File 'sig/redis.rbs', line 452
def psubscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#psubscribe_with_timeout {|arg0| ... } ⇒ Object
454 |
# File 'sig/redis.rbs', line 454
def psubscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#publish ⇒ Object
442 |
# File 'sig/redis.rbs', line 442
def publish: (untyped channel, untyped message) -> untyped
|
#pubsub ⇒ Object
458 |
# File 'sig/redis.rbs', line 458
def pubsub: (untyped subcommand, *untyped args) -> untyped
|
#punsubscribe ⇒ Object
456 |
# File 'sig/redis.rbs', line 456
def punsubscribe: (*untyped channels) -> untyped
|
#spublish ⇒ Object
460 |
# File 'sig/redis.rbs', line 460
def spublish: (untyped channel, untyped message) -> untyped
|
#ssubscribe {|arg0| ... } ⇒ Object
462 |
# File 'sig/redis.rbs', line 462
def ssubscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#ssubscribe_with_timeout {|arg0| ... } ⇒ Object
464 |
# File 'sig/redis.rbs', line 464
def ssubscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#subscribe {|arg0| ... } ⇒ Object
446 |
# File 'sig/redis.rbs', line 446
def subscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#subscribe_with_timeout {|arg0| ... } ⇒ Object
448 |
# File 'sig/redis.rbs', line 448
def subscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#subscribed? ⇒ Boolean
444 |
# File 'sig/redis.rbs', line 444
def subscribed?: () -> bool
|
#sunsubscribe ⇒ Object
466 |
# File 'sig/redis.rbs', line 466
def sunsubscribe: (*untyped channels) -> untyped
|
#unsubscribe ⇒ Object
450 |
# File 'sig/redis.rbs', line 450
def unsubscribe: (*untyped channels) -> untyped
|