dataflow
v1b3
|
#include <instruction_input.h>
Public Member Functions | |
InstructionInput (const Json::Value &storage) | |
InstructionInput (Json::Value *storage) | |
virtual | ~InstructionInput () |
const StringPiece | GetTypeName () const |
bool | has_output_num () const |
void | clear_output_num () |
int32 | get_output_num () const |
void | set_output_num (int32 value) |
bool | has_producer_instruction_index () const |
void | clear_producer_instruction_index () |
int32 | get_producer_instruction_index () const |
void | set_producer_instruction_index (int32 value) |
Static Public Member Functions | |
static InstructionInput * | New () |
An input of an instruction, as a reference to an output of a producer instruction.
|
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 'outputNum
' attribute.
|
inline |
Clears the 'producerInstructionIndex
' attribute.
|
inline |
Get the value of the 'outputNum
' attribute.
|
inline |
Get the value of the 'producerInstructionIndex
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'outputNum
' attribute was set.
outputNum
' attribute was set.
|
inline |
Determine if the 'producerInstructionIndex
' attribute was set.
producerInstructionIndex
' attribute was set.
|
static |
Creates a new default instance.
|
inline |
Change the 'outputNum
' attribute.
The output index (origin zero) within the producer.
[in] | value | The new value. |
|
inline |
Change the 'producerInstructionIndex
' attribute.
The index (origin zero) of the parallel instruction that produces the output to be consumed by this input. This index is relative to the list of instructions in this input's instruction's containing MapTask.
[in] | value | The new value. |