* Stops casting from media router to the specified device, if connected. * * @param {String} deviceName name of the target device. * @return {!promise.Thenable } A promise that will be resolved * when the stop command has been issued to the device.
(deviceName)
| 842 | * when the stop command has been issued to the device. |
| 843 | */ |
| 844 | stopCasting(deviceName) { |
| 845 | return this.execute(new command.Command(Command.STOP_CASTING).setParameter('sinkName', deviceName)) |
| 846 | } |
| 847 | } |
| 848 | |
| 849 | // PUBLIC API |
nothing calls this directly
no test coverage detected