Class: Embulk::InputPlugin

Inherits:
Object
  • Object
show all
Defined in:
lib/embulk/input_plugin.rb

Direct Known Subclasses

Embulk::Input::ExampleInputPlugin

Defined Under Namespace

Modules: RubyAdapter Classes: JavaAdapter

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(task, schema, index, page_builder) ⇒ InputPlugin

Returns a new instance of InputPlugin.



20
21
22
23
24
25
26
# File 'lib/embulk/input_plugin.rb', line 20

def initialize(task, schema, index, page_builder)
  @task = task
  @schema = schema
  @index = index
  @page_builder = page_builder
  init
end

Class Method Details

.cleanup(task, schema, count, commit_reports) ⇒ Object



16
17
18
# File 'lib/embulk/input_plugin.rb', line 16

def self.cleanup(task, schema, count, commit_reports)
  # do nothing by default
end

.from_java(java_class) ⇒ Object



97
98
99
# File 'lib/embulk/input_plugin.rb', line 97

def self.from_java(java_class)
  JavaPlugin.ruby_adapter_class(java_class, InputPlugin, RubyAdapter)
end

.new_java ⇒ Object



36
37
38
# File 'lib/embulk/input_plugin.rb', line 36

def self.new_java
  JavaAdapter.new(self)
end

.resume(task, columns, count, &control) ⇒ Object

Raises:

  • (NotImplementedError)


12
13
14
# File 'lib/embulk/input_plugin.rb', line 12

def self.resume(task, columns, count, &control)
  raise NotImplementedError, "#{self}.resume(task, columns, count, &control) is not implemented. This plugin is not resumable"
end

.transaction(config, &control) ⇒ Object

Raises:

  • (NotImplementedError)


8
9
10
# File 'lib/embulk/input_plugin.rb', line 8

def self.transaction(config, &control)
  raise NotImplementedError, "InputPlugin.transaction(config, &control) must be implemented"
end

Instance Method Details

#init ⇒ Object



28
29
# File 'lib/embulk/input_plugin.rb', line 28

def init
end

#run ⇒ Object

Raises:

  • (NotImplementedError)


31
32
33
# File 'lib/embulk/input_plugin.rb', line 31

def run
  raise NotImplementedError, "InputPlugin#run must be implemented"
end