Show / Hide Table of Contents

Class Cursor

A cursor that indicates the position in the stream from which you want to begin consuming messages and which is required by the {@link #getMessages(GetMessagesRequest) getMessages} operation.

Inheritance
object
Cursor
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StreamingService.Models
Assembly: OCI.DotNetSDK.Streaming.dll
Syntax
public class Cursor

Properties

Value

Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public string Value { get; set; }
Property Value
Type Description
string

The cursor to pass to the GetMessages operation.

Remarks

Required

In this article
Back to top