class Backrub::Store::Base
Public Instance Methods
backlog(channel, count)
click to toggle source
# File lib/backrub/store/base.rb, line 4 def backlog(channel, count) raise NotImplementedError end
publish(channel, message)
click to toggle source
# File lib/backrub/store/base.rb, line 8 def publish(channel, message) raise NotImplementedError end
subscribe(*channel)
click to toggle source
# File lib/backrub/store/base.rb, line 12 def subscribe(*channel) raise NotImplementedError end