Returns a list of items published in a stream, with pagination and ordering.
Usage
mc_list_stream_items(
conn,
stream,
verbose = FALSE,
count = 10,
start = NULL,
local_ordering = FALSE
)Arguments
- conn
A connection object created by
mc_connect.- stream
Character string. Stream name, reference, or txid.
- verbose
Logical. If
TRUE, returns detailed item information.- count
Integer. Number of items to return (default 10).
- start
Optional integer. Offset (positive for forward, negative for backward). If omitted, the most recent items are returned.
- local_ordering
Logical. If
TRUE, uses local node's transaction ordering (defaultFALSE).
See also
mc_list_stream_key_items, mc_list_stream_publisher_items
Other streams:
mc_create_stream(),
mc_create_stream_from(),
mc_get_stream_info(),
mc_get_stream_item(),
mc_get_stream_key_summary(),
mc_get_stream_publisher_summary(),
mc_list_stream_block_items(),
mc_list_stream_key_items(),
mc_list_stream_keys(),
mc_list_stream_publisher_items(),
mc_list_stream_publishers(),
mc_list_stream_query_items(),
mc_list_stream_tx_items(),
mc_list_streams(),
mc_publish(),
mc_publish_from(),
mc_publish_multi(),
mc_publish_multi_from()