Skip to contents

Returns all items in a stream that were published by a given address.

Usage

mc_list_stream_publisher_items(
  conn,
  stream,
  address,
  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.

address

Character string. Publisher address.

verbose

Logical. If TRUE, returns detailed information.

count

Integer. Number of items to return (default 10).

start

Optional integer. Offset.

local_ordering

Logical. Use local ordering.

Value

A data frame (via rpc_res_to_df) with items.

Examples

if (FALSE) { # \dontrun{
items <- mc_list_stream_publisher_items(conn, "mystream", "1A...")
} # }