Class: Funicular::Cable::Subscriptions
- Inherits:
-
Object
- Object
- Funicular::Cable::Subscriptions
- Defined in:
- sig/cable.rbs
Instance Method Summary collapse
- #create ⇒ void
- #find ⇒ Subscription?
-
#initialize ⇒ Subscriptions
constructor
A new instance of Subscriptions.
- #notify_message ⇒ void
- #notify_subscription_confirmed ⇒ void
- #notify_subscription_rejected ⇒ void
- #remove ⇒ void
- #resubscribe_all ⇒ void
Constructor Details
#initialize ⇒ Subscriptions
Returns a new instance of Subscriptions.
37 |
# File 'sig/cable.rbs', line 37
def initialize: (Consumer consumer) -> void
|
Instance Method Details
#create ⇒ void
This method returns an undefined value.
38 |
# File 'sig/cable.rbs', line 38
def create: (Hash[Symbol, untyped] params) ?{ (untyped message) -> void } -> Subscription
|
#find ⇒ Subscription?
39 |
# File 'sig/cable.rbs', line 39
def find: (String identifier) -> Subscription?
|
#notify_message ⇒ void
This method returns an undefined value.
43 |
# File 'sig/cable.rbs', line 43
def notify_message: (String identifier, untyped message) -> void
|
#notify_subscription_confirmed ⇒ void
This method returns an undefined value.
41 |
# File 'sig/cable.rbs', line 41
def notify_subscription_confirmed: (String identifier) -> void
|
#notify_subscription_rejected ⇒ void
This method returns an undefined value.
42 |
# File 'sig/cable.rbs', line 42
def notify_subscription_rejected: (String identifier) -> void
|
#remove ⇒ void
This method returns an undefined value.
40 |
# File 'sig/cable.rbs', line 40
def remove: (Subscription subscription) -> void
|
#resubscribe_all ⇒ void
This method returns an undefined value.
44 |
# File 'sig/cable.rbs', line 44
def resubscribe_all: () -> void
|