Skip to contents

Returns a list of streams (or filtered subset) with optional details.

Usage

mc_list_streams(
  conn,
  streams = "*",
  verbose = FALSE,
  count = NULL,
  start = NULL
)

Arguments

conn

A connection object created by mc_connect.

streams

Character vector of stream names/IDs, or "*" (default) for all streams.

verbose

Logical. If TRUE, returns detailed information.

count

Optional integer. Number of streams to return.

start

Optional integer. Offset for pagination.

Value

A data frame (via rpc_res_to_df) with stream information.

Examples

if (FALSE) { # \dontrun{
all_streams <- mc_list_streams(conn)
first_10 <- mc_list_streams(conn, count = 10)
} # }