Sets the value of a string channel in the software bus * * @param {string} channelName A string containing the channel name. * @param {string} stringValue The string to be set.
(channelName, value)
| 170 | * @param {string} stringValue The string to be set. |
| 171 | */ |
| 172 | setStringChannel(channelName, value) { |
| 173 | this.port.postMessage(["setStringChannel", |
| 174 | channelName, value]); |
| 175 | } |
| 176 | |
| 177 | /** Request the data from a control channel |
| 178 | * |
no test coverage detected