Remove the subscription for this conversation.
()
| 235 | |
| 236 | /** Remove the subscription for this conversation. */ |
| 237 | async unsubscribe(): Promise<void> { |
| 238 | await this.store.kv.delete(`sub:${this.deps.conversationKey}`); |
| 239 | } |
| 240 | |
| 241 | /** Returns true if this conversation is currently subscribed. */ |
| 242 | async isSubscribed(): Promise<boolean> { |