Interface KeepAliveOptions

interface KeepAliveOptions {
    extendThresholdMilliseconds?: number;
    keepAliveInterval?: number;
    verify?: boolean;
}

Properties

extendThresholdMilliseconds?: number

How many milliseconds before session is set to expire to proactively extend the session. Sane values are in the 1-10 minutes range (default 3 min = 180000)

180000
keepAliveInterval?: number

How many milliseconds between automatic extend session calls Sane values are 5-45 minutes, depending on Rev session settings Default 10 minutes

600000
verify?: boolean

If true (default) then make a verify API call to ensure session has a valid session. Otherwise do nothing if session has not expired (or within threshold)

true