SubscriptionLoadingObject
data class SubscriptionLoadingObject<T>(val reply: Reply<T>, val replyUpdatedAt: Long, val error: Throwable?, val errorUpdatedAt: Long, val subscribe: suspend () -> Unit, val unsubscribe: () -> Unit, val reset: suspend () -> Unit) : SubscriptionObject<T>
A SubscriptionLoadingObject represents the initial loading state of the SubscriptionObject.
This means that no data is being received and there is at least one more subscriber.
Parameters
T
Type of data to receive.