Module: Circuitry::Processor

Instance Method Summary collapse

Instance Method Details

#flushObject

Raises:

  • (NotImplementedError)


7
8
9
# File 'lib/circuitry/processor.rb', line 7

def flush
  raise NotImplementedError, "#{self} must implement class method `flush`"
end

#process(&block) ⇒ Object

Raises:

  • (NotImplementedError)


3
4
5
# File 'lib/circuitry/processor.rb', line 3

def process(&block)
  raise NotImplementedError, "#{self} must implement class method `process`"
end