SubscriptionIdleObject
data class SubscriptionIdleObject<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 SubscriptionIdleObject represents the initial idle state of the SubscriptionObject.
This means that no data has been received and there are no subscribers. This is the initial state when subscription processing has not been performed automatically.
Parameters
T
Type of data to receive.