()
| 55 | } |
| 56 | |
| 57 | triggerRealtimePerformanceStarted() { |
| 58 | this.eventEmitter.emit("realtimePerformanceStarted"); |
| 59 | if (this.currentDerivedPlayState !== "play") { |
| 60 | this.eventEmitter.emit("play"); |
| 61 | this.currentDerivedPlayState = "play"; |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | triggerRealtimePerformancePaused() { |
| 66 | this.eventEmitter.emit("realtimePerformancePaused"); |
no outgoing calls
no test coverage detected