com.pubnub.api.callbacks.SubscribeCallback.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-kotlin Show documentation
Show all versions of pubnub-kotlin Show documentation
PubNub is a cross-platform client-to-client (1:1 and 1:many) push service in the cloud, capable of
broadcasting real-time messages to millions of web and mobile clients simultaneously, in less than a quarter
second!
package com.pubnub.api.callbacks
import com.pubnub.api.PubNub
import com.pubnub.api.enums.PNStatusCategory
import com.pubnub.api.models.consumer.PNStatus
import com.pubnub.api.models.consumer.pubsub.PNMessageResult
import com.pubnub.api.models.consumer.pubsub.PNPresenceEventResult
import com.pubnub.api.models.consumer.pubsub.PNSignalResult
import com.pubnub.api.models.consumer.pubsub.files.PNFileEventResult
import com.pubnub.api.models.consumer.pubsub.message_actions.PNMessageActionResult
import com.pubnub.api.models.consumer.pubsub.objects.PNObjectEventResult
interface Listener
interface Disposable {
fun dispose()
}
class DisposableListener(
private val pubNub: PubNub,
private val listener: Listener
) : Disposable, Listener by listener {
override fun dispose() {
pubNub.removeListener(listener)
}
}
abstract class SubscribeCallback : Listener {
/**
* Receive status events like
* [PNStatusCategory.PNAcknowledgmentCategory],
* [PNStatusCategory.PNConnectedCategory],
* [PNStatusCategory.PNReconnectedCategory]
*
* and other events related to the subscribe loop and channel mix.
*
* @param pubnub The client instance which has this listener attached.
* @param pnStatus API operation metadata.
*/
abstract fun status(pubnub: PubNub, pnStatus: PNStatus)
/**
* Receive messages at subscribed channels.
*
* @see [PubNub.subscribe]
*
* @param pubnub The client instance which has this listener attached.
* @param pnMessageResult Wrapper around the actual message content.
*/
open fun message(pubnub: PubNub, pnMessageResult: PNMessageResult) {}
/**
* Receive presence events for channels subscribed to with presence enabled via `withPresence = true` in
* [PubNub.subscribe]
*
* @param pubnub The client instance which has this listener attached.
* @param pnPresenceEventResult Wrapper around a presence event.
*/
open fun presence(pubnub: PubNub, pnPresenceEventResult: PNPresenceEventResult) {}
/**
* Receive signals at subscribed channels.
*
* @see [PubNub.signal]
*
* @param pubnub The client instance which has this listener attached.
* @param pnSignalResult Wrapper around a signal event.
*/
open fun signal(pubnub: PubNub, pnSignalResult: PNSignalResult) {}
/**
* Receive message actions for messages in subscribed channels.
*
* @param pubnub The client instance which has this listener attached.
* @param pnMessageActionResult Wrapper around a message action event.
*/
open fun messageAction(pubnub: PubNub, pnMessageActionResult: PNMessageActionResult) {}
open fun objects(pubnub: PubNub, objectEvent: PNObjectEventResult) {}
open fun file(pubnub: PubNub, pnFileEventResult: PNFileEventResult) {}
}