dataflow
v1b3
|
#include <par_do_instruction.h>
Public Member Functions | |
ParDoInstruction (const Json::Value &storage) | |
ParDoInstruction (Json::Value *storage) | |
virtual | ~ParDoInstruction () |
const StringPiece | GetTypeName () const |
bool | has_input () const |
void | clear_input () |
const InstructionInput | get_input () const |
InstructionInput | mutable_input () |
bool | has_multi_output_infos () const |
void | clear_multi_output_infos () |
const client::JsonCppArray< MultiOutputInfo > | get_multi_output_infos () const |
client::JsonCppArray< MultiOutputInfo > | mutable_multiOutputInfos () |
bool | has_num_outputs () const |
void | clear_num_outputs () |
int32 | get_num_outputs () const |
void | set_num_outputs (int32 value) |
bool | has_side_inputs () const |
void | clear_side_inputs () |
const client::JsonCppArray< SideInputInfo > | get_side_inputs () const |
client::JsonCppArray< SideInputInfo > | mutable_sideInputs () |
bool | has_user_fn () const |
void | clear_user_fn () |
const client::JsonCppAssociativeArray< client::JsonCppData > | get_user_fn () const |
client::JsonCppAssociativeArray< client::JsonCppData > | mutable_userFn () |
Static Public Member Functions | |
static ParDoInstruction * | New () |
An instruction that does a ParDo operation. Takes one main input and zero or more side inputs, and produces zero or more outputs. Runs user code.
|
explicit |
Standard constructor for an immutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
explicit |
Standard constructor for a mutable data object instance.
[in] | storage | The underlying data storage for this instance. |
|
virtual |
Standard destructor.
|
inline |
Clears the 'input
' attribute.
|
inline |
Clears the 'multiOutputInfos
' attribute.
|
inline |
Clears the 'numOutputs
' attribute.
|
inline |
Clears the 'sideInputs
' attribute.
|
inline |
Clears the 'userFn
' attribute.
const InstructionInput google_dataflow_api::ParDoInstruction::get_input | ( | ) | const |
Get a reference to the value of the 'input
' attribute.
const client::JsonCppArray<MultiOutputInfo > google_dataflow_api::ParDoInstruction::get_multi_output_infos | ( | ) | const |
Get a reference to the value of the 'multiOutputInfos
' attribute.
|
inline |
Get the value of the 'numOutputs
' attribute.
const client::JsonCppArray<SideInputInfo > google_dataflow_api::ParDoInstruction::get_side_inputs | ( | ) | const |
Get a reference to the value of the 'sideInputs
' attribute.
|
inline |
Get a reference to the value of the 'userFn
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'input
' attribute was set.
input
' attribute was set.
|
inline |
Determine if the 'multiOutputInfos
' attribute was set.
multiOutputInfos
' attribute was set.
|
inline |
Determine if the 'numOutputs
' attribute was set.
numOutputs
' attribute was set.
|
inline |
Determine if the 'sideInputs
' attribute was set.
sideInputs
' attribute was set.
|
inline |
Determine if the 'userFn
' attribute was set.
userFn
' attribute was set. InstructionInput google_dataflow_api::ParDoInstruction::mutable_input | ( | ) |
Gets a reference to a mutable value of the 'input
' property.
The input.
client::JsonCppArray<MultiOutputInfo > google_dataflow_api::ParDoInstruction::mutable_multiOutputInfos | ( | ) |
Gets a reference to a mutable value of the 'multiOutputInfos
' property.
Information about each of the outputs, if user_fn is a MultiDoFn.
client::JsonCppArray<SideInputInfo > google_dataflow_api::ParDoInstruction::mutable_sideInputs | ( | ) |
Gets a reference to a mutable value of the 'sideInputs
' property.
Zero or more side inputs.
|
inline |
Gets a reference to a mutable value of the 'userFn
' property.
The user function to invoke.
|
static |
Creates a new default instance.
|
inline |
Change the 'numOutputs
' attribute.
The number of outputs.
[in] | value | The new value. |