Interfaces InteractionServer with other components.

interface InteractionContext {
    maxPathsPerInvoke?: number;
    sessions: SessionManager;
    structure: InteractionEndpointStructure;
    subscriptionOptions?: Partial<ServerSubscriptionConfig>;
    initiateExchange(address: PeerAddress, protocolId: number): MessageExchange;
}

Properties

maxPathsPerInvoke?: number
sessions: SessionManager
subscriptionOptions?: Partial<ServerSubscriptionConfig>

Methods