File tree 1 file changed +6
-15
lines changed
1 file changed +6
-15
lines changed Original file line number Diff line number Diff line change @@ -359,28 +359,19 @@ To support this scenario you can provide an implementation for a cache provider
359
359
360
360
``` javascript
361
361
{
362
- save : function (key , value , callback ) {
363
- // save the key with the optional value, invokes the callback with the value saves
362
+ saveAsync : async function (key , value ) {
363
+ // saves the key with the optional value, returns the saved value
364
364
},
365
- get : function (key , callback ) {
366
- // invokes 'callback' and passes the value if found, null otherwise
365
+ getAsync : async function (key ) {
366
+ // returns the value if found, null otherwise
367
367
},
368
- remove : function (key , callback ) {
369
- // removes the key from the cache, invokes `callback` with the
368
+ removeAsync : async function (key ) {
369
+ // removes the key from the cache, returns the
370
370
// key removed, null if no key is removed
371
371
}
372
372
}
373
373
```
374
374
375
- The ` callback ` argument is a function in the style of normal Node callbacks:
376
-
377
- ```
378
- function callback(err, result)
379
- {
380
-
381
- }
382
- ```
383
-
384
375
Provide an instance of an object which has these functions passed to the ` cacheProvider ` config option when using Passport-SAML.
385
376
386
377
## SLO (single logout)
You can’t perform that action at this time.
0 commit comments