Channel Groups API for PubNub Kotlin SDK

Channel groups allow PubNub developers to bundle thousands of channels into a group that can be identified by a name. These channel groups can then be subscribed to, receiving data from the many back-end channels the channel group contains.

Channel group operations

You can't publish to a channel group. You can only subscribe to it. To publish within the channel group, you need to publish to each channel individually.

Calling Kotlin methods

Most PubNub Kotlin SDK method invocations return an Endpoint object, which allows you to decide whether to perform the operation synchronously or asynchronously. You must choose one of these or the operation will not be performed at all.

For example, the following code is valid and will compile, but the publish won't be performed:

pubnub.publish(
message = "this sdk rules!",
channel = "my_channel"
)

To successfully publish a message, you must follow the actual method invocation with whether to perform it synchronously or asynchronously, for example:

pubnub.publish(
message = "this sdk rules!",
channel = "my_channel"
).async { result, status ->
if (status.error) {
// handle error
} else {
// handle successful method result
}
}

Add Channels

Requires Stream Controller add-on

This method requires that the Stream Controller add-on is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.

This function adds a channel to a channel group.

Methods

Adding Channels is accomplished by using the following method(s) in the Kotlin SDK:

Maximum number of channels

200 channels can be added to the channel group per API call.

pubnub.addChannelsToChannelGroup(
channelGroup: String,
channels: List<String>
).async { result, status -> }
ParameterTypeRequiredDescription
channelGroupStringYesThe channel group to add the channels to.
channelsList<String>YesThe channels to add to the channel group.

Basic Usage

pubnub.addChannelsToChannelGroup(
channelGroup = "cg1"
channels = listOf("ch1", "ch2", "ch3")
).async { result, status -> }

Response

The addChannelsToChannelGroup() doesn't return actionable data, be sure to check the status object on the outcome of the operation by checking the status.error.

List Channels

Requires Stream Controller add-on

This method requires that the Stream Controller add-on is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.

This function lists all the channels of the channel group.

Methods

Listing channels is accomplished by using the following method(s) in the Kotlin SDK:

pubnub.listChannelsForChannelGroup(
channelGroup: String
).async { result, status -> }
ParameterTypeRequiredDescription
channelGroupStringYesChannel group to fetch the belonging channels

Basic Usage

pubnub.listChannelsForChannelGroup(
channelGroup = "cg1"
).async { result, status ->
if (!status.error) {
result!!.channels // ["ch1", "ch2", "ch3"]
} else {
// handle error
status.exception?.printStackTrace()
}
}

Returns

The listChannelsForChannelGroup() operation returns a PNChannelGroupsAllChannelsResult which contains the following operations:

MethodTypeDescription
channelsList<String>List of channels of a channel group.

Remove Channels

Requires Stream Controller add-on

This method requires that the Stream Controller add-on is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.

This function removes the channels from the channel group.

Method(s)

Removing Channels is accomplished by using the following method(s) in the Kotlin SDK:

pubnub.removeChannelsFromChannelGroup(
channels: List<String>,
channelGroup: String
).async { result, status -> }
ParameterTypeRequiredDescription
channelsList<String>YesThe channels to remove from the channel group
channelGroupStringYesThe channel group to remove channels from

Basic Usage

pubnub.removeChannelsFromChannelGroup(
channelGroup = "cg1"
).async { result, status -> }

Returns

The removeChannelsFromChannelGroup() doesn't return actionable data, be sure to check the status object on the outcome of the operation by checking the status.error.

Delete Channel Group

Requires Stream Controller add-on

This method requires that the Stream Controller add-on is enabled for your key in the Admin Portal. Read the support page on enabling add-on features on your keys.

This function removes the channel group.

Method(s)

Deleting Channel Group is accomplished by using the following method(s) in the Kotlin SDK:

pubnub.deleteChannelGroup(
channelGroup: String
).async { result, status -> }
ParameterTypeRequiredDescription
channelGroupStringYesThe channel group to remove

Basic Usage

pubnub.deleteChannelGroup(
channelGroup = "cg1"
).async { result, status -> }

Returns

The deleteChannelGroup() doesn't return actionable data, be sure to check the status object on the outcome of the operation by checking the status.error.

Last updated on