pub fn spawn_from_rx_set(
addr: SocketAddr,
memory_limit: MemoryLimit,
shutdown: Shutdown,
rxs: ReceiveSet<LogMsg>,
)
Expand description
Start a Rerun server, listening on addr
.
This function additionally accepts a ReceiveSet
, from which the
server will read all messages. It is similar to creating a client
and sending messages through WriteMessages
, but without the overhead
of a localhost connection.
See serve
for more information about what a Rerun server is.