Class: Rubee::PubSub::Container
- Inherits:
-
Object
- Object
- Rubee::PubSub::Container
- Defined in:
- lib/rubee/pubsub/container.rb
Direct Known Subclasses
Instance Method Summary collapse
- #pub ⇒ Object
-
#sub ⇒ Object
Container Implementation of sub.
-
#unsub ⇒ Object
Container Implementation of unsub.
Instance Method Details
#pub ⇒ Object
4 5 6 |
# File 'lib/rubee/pubsub/container.rb', line 4 def pub(*) raise NotImplementedError end |
#sub ⇒ Object
Container Implementation of sub
9 10 11 |
# File 'lib/rubee/pubsub/container.rb', line 9 def sub(*) raise NotImplementedError end |
#unsub ⇒ Object
Container Implementation of unsub
14 15 16 |
# File 'lib/rubee/pubsub/container.rb', line 14 def unsub(*) raise NotImplementedError end |