pub fn create_server_session(
session_id: SessionId,
instance_id: InstanceId,
blocks: BlockHolder<G2>,
layout_handles: Vec<LayoutHandle>,
sequence_hashes: Vec<SequenceHash>,
transport: Arc<MessageTransport>,
msg_rx: Receiver<SessionMessage>,
) -> (ServerSession, ServerSessionHandle)Expand description
Server-side session (unified replacement for EndpointSession + ControllableSession). Create a ServerSession in G2-only mode with its handle.
This is the replacement for create_endpoint_session.