Stone.js API
    Preparing search index...

    The adapter context for the Node.js WebSocket adapter.

    interface NodeWsAdapterContext {
        executionContext: NodeWsExecutionContext;
        incomingEvent?: IncomingEvent;
        incomingEventBuilder: IAdapterEventBuilder<
            IncomingEventOptions,
            IncomingEvent,
        >;
        outgoingResponse?: OutgoingResponse;
        rawEvent: RawEventType;
        rawResponse: RawWsResponse;
        rawResponseBuilder: IAdapterEventBuilder<
            RawResponseOptions,
            IRawResponseWrapper<RawWsResponse>,
        >;
    }

    Hierarchy

    Index
    executionContext: NodeWsExecutionContext

    The executionContext of type ExecutionContextType.

    incomingEvent?: IncomingEvent

    The incomingEvent associated with the executionContext.

    incomingEventBuilder: IAdapterEventBuilder<IncomingEventOptions, IncomingEvent>

    The incomingEventBuilder.

    outgoingResponse?: OutgoingResponse

    The outgoingResponse associated with the executionContext.

    rawEvent: RawEventType

    The rawEvent of type RawEventType.

    rawResponse: RawWsResponse

    The raw response associated with the current context.

    rawResponseBuilder: IAdapterEventBuilder<
        RawResponseOptions,
        IRawResponseWrapper<RawWsResponse>,
    >

    The rawResponseBuilder.