(self, watcher, doSeek=False, forcedUpdate=False)
| 80 | return SyncServerProtocol(self) |
| 81 | |
| 82 | def sendState(self, watcher, doSeek=False, forcedUpdate=False): |
| 83 | room = watcher.getRoom() |
| 84 | if room: |
| 85 | paused, position = room.isPaused(), room.getPosition() |
| 86 | setBy = room.getSetBy() |
| 87 | watcher.sendState(position, paused, doSeek, setBy, forcedUpdate) |
| 88 | |
| 89 | def getFeatures(self): |
| 90 | features = dict() |
nothing calls this directly
no test coverage detected