Defines the interface that you should implement to receive information on the result of a command.
For more about commands, see caplin.streamlink.CommandSubscription.
A trivial implementation would be as follows :
streamLink.publishToSubject("/SUBJECT", fieldData, {
onCommandError: function(subject, commandErrorEvent) {
console.log("Publish Error : " + commandErrorEvent.getError());
},
onCommandOk: function(subject) {
console.log("Publish to " + subject + " Succesful");
}
}, null);
Attributes | Name and Description |
---|---|
|
caplin.streamlink.CommandListener()
|
Attributes | Name and Description |
---|---|
|
void
onCommandError(String subject, caplin.streamlink.CommandErrorEvent commandErrorEvent)
Callback invoked when a command failed or is an unknown state. |
|
void
onCommandOk(String subject)
Callback invoked when a command was successful. |
►
caplin.streamlink.CommandListener()
►
void
onCommandError(String subject, caplin.streamlink.CommandErrorEvent commandErrorEvent)
Callback invoked when a command failed or is an unknown state.
String | subject | The subject of the command. |
caplin.streamlink.CommandErrorEvent | commandErrorEvent | Information about the command error. |
►
void
onCommandOk(String subject)
Callback invoked when a command was successful.
String | subject | The subject of the command. |