- open(TaskSource, FileInput) - Method in interface org.embulk.spi.DecoderPlugin
-
Opens a FileInput
instance that receives Buffer
s from a File Input Plugin,
or another Decoder Plugin, so that decoded input is read from a Parser Plugin, or another Decoder Plugin
- open(TaskSource, FileOutput) - Method in interface org.embulk.spi.EncoderPlugin
-
Opens a FileOutput
instance that receives Buffer
s from a Formatter Plugin,
or another Encoder Plugin, and writes encoded output into FileOutput
fileOutput
in the
parameter list.
- open(TaskSource, int) - Method in interface org.embulk.spi.FileInputPlugin
-
Opens a TransactionalFileInput
instance so that Buffer
s read from
the configured source are read from a Parser Plugin, or a Decoder Plugin.
- open(TaskSource, int) - Method in interface org.embulk.spi.FileOutputPlugin
-
Opens a TransactionalFileOutput
instance that receives Buffer
s from a
Formatter Plugin, or an Encoder Plugin, and writes them into the configured destination.
- open(TaskSource, Schema, Schema, PageOutput) - Method in interface org.embulk.spi.FilterPlugin
-
Opens a PageOutput
instance that receives Page
s from an Input Plugin, or
another Filter Plugin, and writes converted output into PageOutput
output
in the parameter
list for an Output Plugin, or another Filter Plugin.
- open(TaskSource, Schema, FileOutput) - Method in interface org.embulk.spi.FormatterPlugin
-
Opens a PageOutput
instance that receives Page
s from an Input Plugin, or
a Filter Plugin, and writes formatted output into FileOutput
output
in the parameter list
for a File Output Plugin, or an Encoder Plugin.
- open(TaskSource, Schema, int) - Method in interface org.embulk.spi.OutputPlugin
-
Opens a TransactionalPageOutput
instance that receives Page
s from an Input
Plugin, or a Filter Plugin, and writes them into the configured destination.
- org.embulk.spi - package org.embulk.spi
-
- OutputPlugin - Interface in org.embulk.spi
-
The main class that an Output Plugin implements.
- OutputPlugin.Control - Interface in org.embulk.spi
-
A controller of the following tasks provided from the Embulk core.