(evaluation: Evaluation)
| 114 | } |
| 115 | |
| 116 | setup(evaluation: Evaluation) { |
| 117 | let self = this; |
| 118 | if(this.interval !== undefined) { |
| 119 | evaluation.executeActions(this.memoryActions()); |
| 120 | this.timeout = setInterval(function() { |
| 121 | evaluation.executeActions(self.memoryActions()); |
| 122 | }, this.interval); |
| 123 | } |
| 124 | } |
| 125 | |
| 126 | close() { |
| 127 | clearTimeout(this.timeout); |
nothing calls this directly
no test coverage detected