Class
caplin.streamlink

CommandListener

Provides information on the result of a command.

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);

Constructor Summary

Attributes Name and Description
caplin.streamlink.CommandListener()

Method Summary

Attributes Name and Description
void onCommandError(String subject, caplin.streamlink.CommandErrorEvent commandErrorEvent)

The command failed or is in an unknown state.

void onCommandOk(String subject)

The command was successful.

Constructor Detail

caplin.streamlink.CommandListener()

Method Detail

void onCommandError(String subject, caplin.streamlink.CommandErrorEvent commandErrorEvent)

The command failed or is in an unknown state.

Parameters
String subject The subject of the command.
caplin.streamlink.CommandErrorEvent commandErrorEvent Provides error information for commands.

void onCommandOk(String subject)

The command was successful. Implementing this method is optional.

Parameters
String subject The subject of the command.