ReceiveSuccess

data class ReceiveSuccess<T>(val data: T, val dataUpdatedAt: Long) : SubscriptionAction<T>

Indicates that the subscription is successful.

Parameters

data

The data to be updated.

dataUpdatedAt

The timestamp when the data was updated.

Constructors

Link copied to clipboard
constructor(data: T, dataUpdatedAt: Long)

Properties

Link copied to clipboard
val data: T
Link copied to clipboard