Module: Seekmodo::Sdk::Storage::Protocols::EventQueueStore

Included in:
Memory::EventQueueStore
Defined in:
lib/seekmodo/sdk/storage/protocols.rb

Instance Method Summary collapse

Instance Method Details

#countObject

Raises:

  • (NotImplementedError)


40
41
42
# File 'lib/seekmodo/sdk/storage/protocols.rb', line 40

def count
  raise NotImplementedError
end

#drain(max_events) ⇒ Object

Raises:

  • (NotImplementedError)


36
37
38
# File 'lib/seekmodo/sdk/storage/protocols.rb', line 36

def drain(max_events)
  raise NotImplementedError
end

#push(event) ⇒ Object

Raises:

  • (NotImplementedError)


32
33
34
# File 'lib/seekmodo/sdk/storage/protocols.rb', line 32

def push(event)
  raise NotImplementedError
end