Description

Represents an interface to receive GroupChannelCollection events.

Hierarchy

  • GroupChannelCollectionEventHandler

Properties

onChannelsAdded?: ((context, channels) => void)

Type declaration

    • (context, channels): void
    • Called when there are newly added GroupChannels.

      Parameters

      • context: BaseChannelEventContext
      • channels: BaseChannel[]

      Returns void

onChannelsDeleted?: ((context, channelUrls) => void)

Type declaration

    • (context, channelUrls): void
    • Called when one or more of the GroupChannels that GroupChannelCollection holds has been deleted.

      Parameters

      • context: BaseChannelEventContext
      • channelUrls: string[]

      Returns void

onChannelsUpdated?: ((context, channels) => void)

Type declaration

    • (context, channels): void
    • Called when there's an update in one or more of the GroupChannels that GroupChannelCollection holds.

      Parameters

      • context: BaseChannelEventContext
      • channels: BaseChannel[]

      Returns void

Generated using TypeDoc