After the http2session.setTimeout() method is used to set the timeout period for this Http2Session, the 'timeout' event is emitted if there is no activity on the Http2Session after the configured number of milliseconds. Its listener does not expect any arguments.

    1. session.setTimeout(2000);
    2. session.on('timeout', () => { /* .. */ });