Class: Fairy::IOFilter

Inherits:
Filter
  • Object
show all
Defined in:
lib/fairy/client/io-filter.rb

Instance Method Summary collapse

Methods inherited from Filter

#backend, #backend=, #backend_class, #def_pool_variable

Constructor Details

#initialize(fairy, *rests) ⇒ IOFilter

Returns a new instance of IOFilter.



11
12
13
# File 'lib/fairy/client/io-filter.rb', line 11

def initialize(fairy, *rests)
  super
end

Instance Method Details

#backend_class_nameObject



15
16
17
# File 'lib/fairy/client/io-filter.rb', line 15

def backend_class_name
  ERR::Raise ERR::INTERNAL::UndefinedBackendClass
end

#input=(job) ⇒ Object



19
20
21
22
23
24
# File 'lib/fairy/client/io-filter.rb', line 19

def input=(job)
  @input=job
#      atom = Atom.new(backend, :input=, job.backend)
#      @fairy.send_atom(atom)
  backend.input=job.backend
end