Returns metadata about a stream, including its creation transaction, open/restricted status, and optionally the creator address.
Arguments
- conn
A connection object created by
mc_connect.- stream
Character string. Stream name, reference, or creation transaction ID.
- verbose
Logical. If
TRUE, includes the creator address.
See also
mc_list_streams to list all streams.
Other streams:
mc_create_stream(),
mc_create_stream_from(),
mc_get_stream_item(),
mc_get_stream_key_summary(),
mc_get_stream_publisher_summary(),
mc_list_stream_block_items(),
mc_list_stream_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()
Examples
if (FALSE) { # \dontrun{
info <- mc_get_stream_info(conn, "mystream")
print(info$open)
} # }