Interface ConnectionSource

A ConnectionSource creates a Channel. The channel is valid until it sends a close event.

interface ConnectionSource {
    onConnectionDidOpen: Event<Channel>;
}

Implemented by

Properties

onConnectionDidOpen: Event<Channel>