Class: Backrub::Store::Base

Inherits:
Object
  • Object
show all
Defined in:
lib/backrub/store/base.rb

Direct Known Subclasses

Redis

Instance Method Summary collapse

Instance Method Details

#backlog(channel, count) ⇒ Object

Raises:

  • (NotImplementedError)


4
5
6
# File 'lib/backrub/store/base.rb', line 4

def backlog(channel, count)
  raise NotImplementedError
end

#publish(channel, message) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/backrub/store/base.rb', line 8

def publish(channel, message)
  raise NotImplementedError
end

#subscribe(*channel) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/backrub/store/base.rb', line 12

def subscribe(*channel)
  raise NotImplementedError
end