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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/pubsublite_v1/classes.rb,
generated/google/apis/pubsublite_v1/representations.rb,
generated/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.



132
133
134
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 132

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)


130
131
132
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 130

def offset
  @offset
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



137
138
139
# File 'generated/google/apis/pubsublite_v1/classes.rb', line 137

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