Class: Google::Apis::PubsubliteV1::Cursor

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/pubsublite_v1/classes.rb,
lib/google/apis/pubsublite_v1/representations.rb,
lib/google/apis/pubsublite_v1/representations.rb

Overview

A cursor that describes the position of a message within a topic partition.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Cursor

Returns a new instance of Cursor.



269
270
271
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 269

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#offsetFixnum

The offset of a message within a topic partition. Must be greater than or equal 0. Corresponds to the JSON property offset

Returns:

  • (Fixnum)


267
268
269
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 267

def offset
  @offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



274
275
276
# File 'lib/google/apis/pubsublite_v1/classes.rb', line 274

def update!(**args)
  @offset = args[:offset] if args.key?(:offset)
end