Tutorial: Channel.disconnect

Channel.disconnect

Disconnect from the channel.

Example

(async ()=> {
    const client = await fin.InterApplicationBus.Channel.connect('channelName');

    await client.disconnect();
})();