Class: Redis::SubscribedClient
- Inherits:
-
Object
- Object
- Redis::SubscribedClient
- Defined in:
- sig/redis.rbs
Instance Method Summary collapse
- #call_v ⇒ Object
- #close ⇒ nil
-
#initialize ⇒ SubscribedClient
constructor
A new instance of SubscribedClient.
- #psubscribe {|arg0| ... } ⇒ Object
- #psubscribe_with_timeout {|arg0| ... } ⇒ Object
- #punsubscribe ⇒ Object
- #ssubscribe {|arg0| ... } ⇒ Object
- #ssubscribe_with_timeout {|arg0| ... } ⇒ Object
- #subscribe {|arg0| ... } ⇒ Object
- #subscribe_with_timeout {|arg0| ... } ⇒ Object
- #subscription ⇒ Object
- #sunsubscribe ⇒ Object
- #unsubscribe ⇒ Object
Constructor Details
#initialize ⇒ SubscribedClient
Returns a new instance of SubscribedClient.
1315 |
# File 'sig/redis.rbs', line 1315
def initialize: (untyped client) -> void
|
Instance Method Details
#call_v ⇒ Object
1317 |
# File 'sig/redis.rbs', line 1317
def call_v: (untyped command) -> untyped
|
#close ⇒ nil
1337 |
# File 'sig/redis.rbs', line 1337
def close: () -> nil
|
#psubscribe {|arg0| ... } ⇒ Object
1323 |
# File 'sig/redis.rbs', line 1323
def psubscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#psubscribe_with_timeout {|arg0| ... } ⇒ Object
1325 |
# File 'sig/redis.rbs', line 1325
def psubscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#punsubscribe ⇒ Object
1333 |
# File 'sig/redis.rbs', line 1333
def punsubscribe: (*untyped channels) -> untyped
|
#ssubscribe {|arg0| ... } ⇒ Object
1327 |
# File 'sig/redis.rbs', line 1327
def ssubscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#ssubscribe_with_timeout {|arg0| ... } ⇒ Object
1329 |
# File 'sig/redis.rbs', line 1329
def ssubscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#subscribe {|arg0| ... } ⇒ Object
1319 |
# File 'sig/redis.rbs', line 1319
def subscribe: (*untyped channels) { (?) -> untyped } -> untyped
|
#subscribe_with_timeout {|arg0| ... } ⇒ Object
1321 |
# File 'sig/redis.rbs', line 1321
def subscribe_with_timeout: (untyped timeout, *untyped channels) { (?) -> untyped } -> untyped
|
#subscription ⇒ Object
1339 |
# File 'sig/redis.rbs', line 1339
def subscription: (untyped start, untyped stop, untyped channels, untyped block, ?::Integer timeout) -> untyped
|
#sunsubscribe ⇒ Object
1335 |
# File 'sig/redis.rbs', line 1335
def sunsubscribe: (*untyped channels) -> untyped
|
#unsubscribe ⇒ Object
1331 |
# File 'sig/redis.rbs', line 1331
def unsubscribe: (*untyped channels) -> untyped
|