dataflow
v1b3
|
#include <write_instruction.h>
Public Member Functions | |
WriteInstruction (const Json::Value &storage) | |
WriteInstruction (Json::Value *storage) | |
virtual | ~WriteInstruction () |
const StringPiece | GetTypeName () const |
bool | has_input () const |
void | clear_input () |
const InstructionInput | get_input () const |
InstructionInput | mutable_input () |
bool | has_sink () const |
void | clear_sink () |
const Sink | get_sink () const |
Sink | mutable_sink () |
Static Public Member Functions | |
static WriteInstruction * | New () |
An instruction that writes records. Takes one input, produces no outputs.
|
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 'sink
' attribute.
const InstructionInput google_dataflow_api::WriteInstruction::get_input | ( | ) | const |
Get a reference to the value of the 'input
' attribute.
const Sink google_dataflow_api::WriteInstruction::get_sink | ( | ) | const |
Get a reference to the value of the 'sink
' 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 'sink
' attribute was set.
sink
' attribute was set. InstructionInput google_dataflow_api::WriteInstruction::mutable_input | ( | ) |
Gets a reference to a mutable value of the 'input
' property.
The input.
Sink google_dataflow_api::WriteInstruction::mutable_sink | ( | ) |
Gets a reference to a mutable value of the 'sink
' property.
The sink to write to.
|
static |
Creates a new default instance.