Interface HubCapsule<Channel, EventData>

interface HubCapsule<Channel, EventData> {
    channel: Channel;
    patternInfo?: string[];
    payload: HubPayload<EventData>;
    source?: string;
}

Type Parameters

Properties

channel: Channel
patternInfo?: string[]
source?: string