pub fn serve_boundary_requests<SC: StorageCapture, B: Fn(usize) -> SC + Send + Sync + 'static>(
    config: Config,
    requests: UnboundedReceiver<SourceInstanceRequest>,
    create_boundary: B
) -> Result<(Server, BoundaryHook<LocalStorageClient>), Error>
Expand description

Initiates a timely dataflow computation, processing materialized commands.

  • create_boundary: A function to obtain the worker-local boundary components.