update

abstract suspend fun update(block: MutableSubscriptionSet.(T) -> Unit): SubscriptionSet<T>

Modify the subscription set. If an exception is thrown during the update, no changes will be applied. If the update succeeds, this subscription set is updated with the modified state.

Return

this subscription set, that now has been updated.

Parameters

block

the block that modifies the subscription set.