Class: Tep::ParallelWorker

Inherits:
Object
  • Object
show all
Defined in:
lib/tep/parallel.rb

Overview

Base class for Tep::Parallel workers. Override ‘run(item)` in subclasses; the default emits “” so a base-class instance used for seeding stays type-safe.

Instance Method Summary collapse

Instance Method Details

#run(item) ⇒ Object



73
74
75
# File 'lib/tep/parallel.rb', line 73

def run(item)
  ""
end