Skip to contents

Returns details about the node's off‑chain chunk queue, which handles the transmission of large data items that are split into chunks.

Usage

mc_get_chunk_queue_info(conn)

Arguments

conn

A connection object created by mc_connect.

Value

A list containing:

chunk_count

Number of chunks currently queued.

byte_count

Total size in bytes of queued chunks.

...

Other queue statistics.

See also

mc_get_chunk_queue_totals for cumulative statistics.

Other off-chain data: mc_get_chunk_queue_totals()

Examples

if (FALSE) { # \dontrun{
queue_info <- mc_get_chunk_queue_info(conn)
cat("Chunks pending:", queue_info$chunk_count)
} # }