Skip to contents

Returns the set of addresses that have published to a stream.

Usage

mc_list_stream_publishers(
  conn,
  stream,
  addresses = "*",
  verbose = FALSE,
  count = NULL,
  start = NULL,
  local_ordering = FALSE
)

Arguments

conn

A connection object created by mc_connect.

stream

Character string. Stream name, reference, or txid.

addresses

Character vector of addresses to filter (default "*").

verbose

Logical. If TRUE, returns additional metadata.

count

Optional integer. Number of publishers to return.

start

Optional integer. Offset.

local_ordering

Logical. Use local ordering.

Value

A data frame (via rpc_res_to_df) with publisher information.

Examples

if (FALSE) { # \dontrun{
publishers <- mc_list_stream_publishers(conn, "mystream")
} # }