* Writes session data for a given session ID to the persistence store * * @param sessionId - Unique identifier for the session * @param data - Session data to store
(sessionId: string, data: SessionData)
| 84 | * @param data - Session data to store |
| 85 | */ |
| 86 | write(sessionId: string, data: SessionData): Promise<void> | void |
| 87 | |
| 88 | /** |
| 89 | * Removes session data for a given session ID from the persistence store |
no outgoing calls