pdfrx_web
    Preparing search index...

    Interface CollaborationTransport

    Host-provided transport hooks for authentication and custom relay routing.

    The defaults use the browser's native WebSocket and fetch, and derive a root-level HTTP source path from the relay URL. Applications can inject a credentialed fetch, a ticket-bearing socket factory, or a reverse-proxy specific source URL without coupling the package to one auth provider.

    interface CollaborationTransport {
        createWebSocket?: CollaborationWebSocketFactory;
        fetch?: CollaborationFetch;
        resolveSourceUrl?: RelaySourceUrlResolver;
    }
    Index

    Creates the relay socket; useful for short-lived connection tickets or polyfills.

    Performs source GET/PUT requests; add credentials or authorization here.

    resolveSourceUrl?: RelaySourceUrlResolver

    Overrides source HTTP URL construction.