Represents the options when subscribing to Fauna Event Feeds. More...
Public Member Functions | |
FeedOptions (string cursor, int? pageSize=null) | |
Initializes a new instance of the FeedOptions class with the specified cursor and optional page size. | |
FeedOptions (long startTs, int? pageSize=null) | |
Initializes a new instance of the FeedOptions class with the specified start timestamp and optional page size. | |
FeedOptions (int pageSize) | |
Initializes a new instance of the FeedOptions class with the specified page size. | |
Additional Inherited Members | |
Properties inherited from Fauna.Types.EventOptions | |
string? | Cursor [get, set] |
Cursor returned from Fauna. | |
long? | StartTs [get] |
Start timestamp returned for the feed. Used to resume the Feed. | |
int? | PageSize [get] |
Limit page size for the Feed. | |
Represents the options when subscribing to Fauna Event Feeds.
Definition at line 8 of file FeedOptions.cs.
Fauna.Core.FeedOptions.FeedOptions | ( | string | cursor, |
int? | pageSize = null |
||
) |
Initializes a new instance of the FeedOptions class with the specified cursor and optional page size.
cursor | The cursor for the feed. Used to resume the Feed. |
pageSize | Optional page size for the feed. |
Definition at line 16 of file FeedOptions.cs.
Fauna.Core.FeedOptions.FeedOptions | ( | long | startTs, |
int? | pageSize = null |
||
) |
Initializes a new instance of the FeedOptions class with the specified start timestamp and optional page size.
startTs | The start timestamp for the feed. Used to resume the Feed. |
pageSize | Optional page size for the feed. |
Definition at line 28 of file FeedOptions.cs.
Fauna.Core.FeedOptions.FeedOptions | ( | int | pageSize | ) |
Initializes a new instance of the FeedOptions class with the specified page size.
pageSize | The page size for the feed. |
Definition at line 38 of file FeedOptions.cs.