com.pubnub.internal.v2.callbacks.DelegatingSubscribeCallback.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pubnub-gson-impl Show documentation
Show all versions of pubnub-gson-impl 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.internal.callbacks
import com.pubnub.api.BasePubNub
import com.pubnub.api.PubNub
import com.pubnub.api.callbacks.SubscribeCallback
import com.pubnub.api.models.consumer.PNStatus
import com.pubnub.internal.v2.callbacks.DelegatingEventListener
import com.pubnub.internal.v2.callbacks.StatusListenerCore
data class DelegatingSubscribeCallback(private val listener: SubscribeCallback) :
com.pubnub.internal.callbacks.SubscribeCallback,
DelegatingEventListener(
listener,
),
StatusListenerCore {
override fun status(
pubnub: BasePubNub<*, *, *, *, *, *, *, *>,
status: PNStatus,
) {
listener.status(pubnub as PubNub, status)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy