class Downstream::AbstractPubsub

Public Instance Methods

publish(identifier, event) click to toggle source
# File lib/downstream/pubsub_adapters/abstract_pubsub.rb, line 13
def publish(identifier, event)
  raise NotImplementedError
end
subscribe(identifier, callable) click to toggle source
# File lib/downstream/pubsub_adapters/abstract_pubsub.rb, line 5
def subscribe(identifier, callable)
  raise NotImplementedError
end
subscribed(identifier, callable, &block) click to toggle source
# File lib/downstream/pubsub_adapters/abstract_pubsub.rb, line 9
def subscribed(identifier, callable, &block)
  raise NotImplementedError
end