(sid: string, sess:any)
| 203 | } |
| 204 | |
| 205 | async _set(sid: string, sess:any) { |
| 206 | logger.debug(`SET ${sid}`); |
| 207 | sess = await this._updateExpirations(sid, sess); |
| 208 | if (sess != null) await this._write(sid, sess); |
| 209 | } |
| 210 | |
| 211 | async _destroy(sid:string) { |
| 212 | logger.debug(`DESTROY ${sid}`); |
nothing calls this directly
no test coverage detected