dataflow
v1b3
|
#include <stream_location.h>
Public Member Functions | |
StreamLocation (const Json::Value &storage) | |
StreamLocation (Json::Value *storage) | |
virtual | ~StreamLocation () |
const StringPiece | GetTypeName () const |
bool | has_custom_source_location () const |
void | clear_custom_source_location () |
const CustomSourceLocation | get_custom_source_location () const |
CustomSourceLocation | mutable_customSourceLocation () |
bool | has_pubsub_location () const |
void | clear_pubsub_location () |
const PubsubLocation | get_pubsub_location () const |
PubsubLocation | mutable_pubsubLocation () |
bool | has_side_input_location () const |
void | clear_side_input_location () |
const StreamingSideInputLocation | get_side_input_location () const |
StreamingSideInputLocation | mutable_sideInputLocation () |
bool | has_streaming_stage_location () const |
void | clear_streaming_stage_location () |
const StreamingStageLocation | get_streaming_stage_location () const |
StreamingStageLocation | mutable_streamingStageLocation () |
Static Public Member Functions | |
static StreamLocation * | New () |
Describes a stream of data, either as input to be processed or as output of a streaming Dataflow job.
|
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 'customSourceLocation
' attribute.
|
inline |
Clears the 'pubsubLocation
' attribute.
|
inline |
Clears the 'sideInputLocation
' attribute.
|
inline |
Clears the 'streamingStageLocation
' attribute.
const CustomSourceLocation google_dataflow_api::StreamLocation::get_custom_source_location | ( | ) | const |
Get a reference to the value of the 'customSourceLocation
' attribute.
const PubsubLocation google_dataflow_api::StreamLocation::get_pubsub_location | ( | ) | const |
Get a reference to the value of the 'pubsubLocation
' attribute.
const StreamingSideInputLocation google_dataflow_api::StreamLocation::get_side_input_location | ( | ) | const |
Get a reference to the value of the 'sideInputLocation
' attribute.
const StreamingStageLocation google_dataflow_api::StreamLocation::get_streaming_stage_location | ( | ) | const |
Get a reference to the value of the 'streamingStageLocation
' attribute.
|
inline |
Returns a string denoting the type of this data object.
|
inline |
Determine if the 'customSourceLocation
' attribute was set.
customSourceLocation
' attribute was set.
|
inline |
Determine if the 'pubsubLocation
' attribute was set.
pubsubLocation
' attribute was set.
|
inline |
Determine if the 'sideInputLocation
' attribute was set.
sideInputLocation
' attribute was set.
|
inline |
Determine if the 'streamingStageLocation
' attribute was set.
streamingStageLocation
' attribute was set. CustomSourceLocation google_dataflow_api::StreamLocation::mutable_customSourceLocation | ( | ) |
Gets a reference to a mutable value of the 'customSourceLocation
' property.
The stream is a custom source.
PubsubLocation google_dataflow_api::StreamLocation::mutable_pubsubLocation | ( | ) |
Gets a reference to a mutable value of the 'pubsubLocation
' property.
The stream is a pubsub stream.
StreamingSideInputLocation google_dataflow_api::StreamLocation::mutable_sideInputLocation | ( | ) |
Gets a reference to a mutable value of the 'sideInputLocation
' property.
The stream is a streaming side input.
StreamingStageLocation google_dataflow_api::StreamLocation::mutable_streamingStageLocation | ( | ) |
Gets a reference to a mutable value of the 'streamingStageLocation
' property.
The stream is part of another computation within the current streaming Dataflow job.
|
static |
Creates a new default instance.