Class: Rubee::PubSub::Container

Inherits:
Object
  • Object
show all
Defined in:
lib/rubee/pubsub/container.rb

Direct Known Subclasses

Redis

Instance Method Summary collapse

Instance Method Details

#pubObject

Raises:

  • (NotImplementedError)


4
5
6
# File 'lib/rubee/pubsub/container.rb', line 4

def pub(*)
  raise NotImplementedError
end

#subObject

Container Implementation of sub

Raises:

  • (NotImplementedError)


9
10
11
# File 'lib/rubee/pubsub/container.rb', line 9

def sub(*)
  raise NotImplementedError
end

#unsubObject

Container Implementation of unsub

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/rubee/pubsub/container.rb', line 14

def unsub(*)
  raise NotImplementedError
end