class Hoze::Source

Attributes

channel[R]
engine[R]
key[R]

Public Instance Methods

listen(&block) click to toggle source
# File lib/hoze/interface/source.rb, line 7
def listen &block
  raise NotImplementedError.new("This source implementation doesn't support listen method.")
end
push(payload, metadata) click to toggle source
# File lib/hoze/interface/source.rb, line 11
def push payload, metadata
  raise NotImplementedError.new("This source implementation doesn't support push method.")
end