Module: Chasqui::QueueAdapter

Defined in:
lib/chasqui/queue_adapter.rb,
lib/chasqui/queue_adapter/redis_queue_adapter.rb

Defined Under Namespace

Classes: RedisQueueAdapter

Instance Method Summary collapse

Instance Method Details

#bind(subscriber) ⇒ Object

Raises:

  • (NotImplementedError)


3
4
5
# File 'lib/chasqui/queue_adapter.rb', line 3

def bind(subscriber)
  raise NotImplementedError
end

#unbind(subscriber) ⇒ Object

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/chasqui/queue_adapter.rb', line 7

def unbind(subscriber)
  raise NotImplementedError
end