class Google::Apis::DataflowV1b3::ConcatPosition
A position that encapsulates an inner position and an index for the inner position. A ConcatPosition
can be used by a reader of a source that encapsulates a set of other sources.
Attributes
index[RW]
Index of the inner source. Corresponds to the JSON property `index` @return [Fixnum]
position[RW]
Position
defines a position within a collection of data. The value can be either the end position, a key (used with ordered collections), a byte offset, or a record index. Corresponds to the JSON property `position` @return [Google::Apis::DataflowV1b3::Position]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/dataflow_v1b3/classes.rb, line 444 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/dataflow_v1b3/classes.rb, line 449 def update!(**args) @index = args[:index] if args.key?(:index) @position = args[:position] if args.key?(:position) end