(debug: boolean = false)
| 210 | } |
| 211 | |
| 212 | start_session(debug: boolean = false): void { |
| 213 | this.debug = debug; |
| 214 | this.webio_session_id = "NEW-" + randomid(24); |
| 215 | this.pull(); |
| 216 | this.interval_pull_id = setInterval(() => { |
| 217 | this.pull() |
| 218 | }, this.pull_interval_ms); |
| 219 | } |
| 220 | |
| 221 | pull() { |
| 222 | let that = this; |