Fake Mirrors
    Preparing search index...

    Interface HttpServerContextFactory

    Represents a HTTP server context factory

    interface HttpServerContextFactory {
        createNormal(
            req: IncomingMessage,
            res: ServerResponse,
            state: HttpServerContextState,
        ): HttpServerContext;
        createWebSocket(
            ws: WebSocket,
            req: IncomingMessage,
            state: HttpServerContextState,
        ): HttpServerContext;
    }

    Implemented by

    Methods