Getting started: Pub/Sub in Kotlin

This guide will get you started with Ably Pub/Sub in Kotlin.

It will take you through the following steps:

  • Create a client and establish a realtime connection to Ably.
  • Attach to a channel and subscribe to its messages.
  • Publish a message to the channel for your client to receive.
  • Join and subscribe to the presence set of the channel.
  • Retrieve the messages you sent in the guide from history.
  • Close a connection to Ably when it is no longer needed.

  • Sign up for an Ably account.
    • Create a new app, and create your first API key.
    • Your API key will need the publish, subscribe, presence and history capabilities.
  • Install the Ably CLI:
npm install -g @ably/cli
Copied!
  • Run the following to log in to your Ably account and set the default app and API key:
ably login ably apps switch ably auth keys switch
Copied!
  • Install JDK version 8 or greater.
  • Install Android Studio or IntelliJ IDEA
  • Create a new project in your IDE and install the Ably Pub/Sub Kotlin SDK. If using Gradle:
Kotlin v1.2
implementation("io.ably:ably-java:<latest-version>")
Copied!

Clients establish a connection with Ably when they instantiate an SDK. This enables them to send and receive messages in realtime across channels.

  • Open up the dev console of your first app before instantiating your client so that you can see what happens.
  • Create a Main.kt file in your project and add the following function to instantiate the SDK and establish a connection to Ably. At the minimum you need to provide an authentication mechanism. Use an API key for simplicity, but you should use token authentication in a production app. A clientId ensures the client is identified, which is required to use certain features, such as presence:
Kotlin v1.2
import io.ably.lib.realtime.AblyRealtime import io.ably.lib.realtime.ConnectionEvent import io.ably.lib.types.ClientOptions fun getStarted() { val realtimeClient = AblyRealtime(ClientOptions().apply { key = "<loading API key, please wait>" clientId = "my-first-client" }) realtimeClient.connection.once(ConnectionEvent.connected) { println("Made my first connection!") } } fun main() { getStarted() }
Demo Only
Copied!

You can monitor the lifecycle of clients’ connections, but for now just log a message to the console to know that the connection attempt was successful. You’ll see the message printed to your console, and you can also inspect the connection event in the dev console of your app.

Messages contain the data that a client is communicating, such as a short ‘hello’ from a colleague, or a financial update being broadcast to subscribers from a server. Ably uses channels to separate messages into different topics, so that clients only ever receive messages on the channels they are subscribed to.

  • Add the following lines to your getStarted() function to create a channel instance and register a listener to subscribe to the channel. Then run file in the IDE:
Kotlin v1.2
val channel = realtimeClient.channels.get("my-first-channel") channel.subscribe { message -> println("Received message: ${message.data}") }
Copied!
  • Use the Ably CLI to publish a message to your first channel. The message will be received by the client you’ve subscribed to the channel, and be logged to the console.
ably channels publish my-first-channel 'Hello!'
Copied!
  • In a new terminal tab, subscribe to the same channel using the CLI:
ably channels subscribe my-first-channel
Copied!

Publish another message using the CLI and you will see that it’s received instantly by the client you have running locally, as well as the subscribed terminal instance.

Presence enables clients to be aware of one another if they are present on the same channel. You can then show clients who else is online, provide a custom status update for each, and notify the channel when someone goes offline.

  • Add the following lines to your getStarted() function to subscribe to, and join, the presence set of the channel. Then run it in the IDE:
Kotlin v1.2
channel.presence.subscribe { presenceMessage -> println("Event type: ${presenceMessage.action} from ${presenceMessage.clientId} with the data ${presenceMessage.data}") } channel.presence.enter("I'm here!", null)
Copied!
  • In the dev console of your first app, attach to my-first-channel. Enter a clientId, such as my-dev-console, and then join the presence set of the channel. You’ll see that my-first-client is already present in the channel. In the console of your IDE you’ll see that an event was received when the dev console client joined the channel.
  • You can have another client join the presence set using the Ably CLI:
ably channels presence enter my-first-channel --client-id "my-cli" --data '{"status":"learning about Ably!"}'
Copied!

You can retrieve previously sent messages using the history feature. Ably stores all messages for 2 minutes by default in the event a client experiences network connectivity issues. This can be extended for longer if required.

If more than 2 minutes has passed since you published a regular message (excluding the presence events), then you can publish some more before trying out history. You can use the Pub/Sub SDK, Ably CLI or the dev console to do this.

For example, using the Ably CLI to publish 5 messages:

ably channels publish --count 5 my-first-channel "Message number {{.Count}}"
Copied!
  • Add the following lines to your getStarted() function to retrieve any messages that were recently published to the channel. Then run it in the IDE:
Kotlin v1.2
val historyPage = channel.history(null) val messages = historyPage.items().map { it.data } println(messages)
Copied!

The output will look similar to the following:

[ 'Message number 5', 'Message number 4', 'Message number 3', 'Message number 2', 'Message number 1' ]
Copied!

Connections are automatically closed approximately 2 minutes after no heartbeat is detected by Ably. Explicitly closing connections when they are no longer needed is good practice to help save costs. It will also remove all listeners that were registered by the client.

Note that messages are streamed to clients as soon as they attach to a channel, as long as they have the necessary capabilities. Clients are implicitly attached to a channel when they call subscribe(). Detaching from a channel using the detach() method will stop the client from being streamed messages by Ably.

Listeners registered when subscribing to a channel are registered client-side. Unsubscribing by calling unsubscribe() will remove previously registered listeners for that channel. Detaching from a channel has no impact on listeners. As such, if a client reattaches to a channel that they previously registered listeners for, then those listeners will continue to function upon reattachment.

  • Add the following to either of the clients to close the connection after a simulated 10 seconds. Run it in the IDE:
Kotlin v1.2
Thread.sleep(10_000) realtimeClient.close()
Copied!

Continue to explore the documentation with Kotlin as the selected language:

Read more about the concepts covered in this guide:

You can also explore the Ably CLI further, or visit the Pub/Sub API references.

Select...