SubscriptionErrorObject
data class SubscriptionErrorObject<T>(val reply: Reply<T>, val replyUpdatedAt: Long, val error: Throwable, val errorUpdatedAt: Long, val subscriberStatus: SubscriberStatus, val subscribe: suspend () -> Unit, val unsubscribe: () -> Unit, val reset: suspend () -> Unit) : SubscriptionObject<T>
A SubscriptionErrorObject represents the error state of the SubscriptionObject.
This means that an error occurred during the subscription process and the subscription is being stopped, and you must call reset to restart the subscription.
Parameters
T
Type of data to receive.