SBDGroupChannelCollectionDelegate Protocol Reference

Conforms to NSObject
Declared in SBDGroupChannelCollectionDelegate.h

Overview

Methods that are invoked when the event of the channel collection occurs.

– channelCollection:context:addedChannels:

A callback when the channels are added.

- (void)channelCollection:(SBDGroupChannelCollection *)collection context:(SBDChannelContext *)context addedChannels:(NSArray<SBDGroupChannel*> *)channels

Parameters

collection

The collection object.

context

The context that represents the reason why the delegate is invoked.

channels

The channels that are added.

Availability

3.1.0

Declared In

SBDGroupChannelCollectionDelegate.h

– channelCollection:context:updatedChannels:

A callback when the channels are updated.

- (void)channelCollection:(SBDGroupChannelCollection *)collection context:(SBDChannelContext *)context updatedChannels:(NSArray<SBDGroupChannel*> *)channels

Parameters

collection

The collection object.

context

The context that represents the reason why the delegate is invoked.

channels

The channels that are updated.

Availability

3.1.0

Declared In

SBDGroupChannelCollectionDelegate.h

– channelCollection:context:deletedChannelUrls:

A callback when the channels are deleted.

- (void)channelCollection:(SBDGroupChannelCollection *)collection context:(SBDChannelContext *)context deletedChannelUrls:(NSArray<NSString*> *)deletedChannelUrls

Parameters

collection

The collection object.

context

The context that represents the reason why the delegate is invoked.

deletedChannelUrls

The channels that are deleted.

Availability

3.1.0

Declared In

SBDGroupChannelCollectionDelegate.h