Package com.caplin.streamlink
Interface CommandResultListener
- All Superinterfaces:
CommandListener
Defines the interface that you should implement to receive information on the result of a command.
For more about commands, see CommandSubscription
.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onCommandResult
(String subject, CommandResultEvent commandEvent) For a command that returns a result, this method will be called in addition to the onCommandOk callbackMethods inherited from interface com.caplin.streamlink.CommandListener
onCommandError, onCommandOk
-
Method Details
-
onCommandResult
For a command that returns a result, this method will be called in addition to the onCommandOk callback
- Parameters:
subject
- The subject of the command.commandEvent
- The command result.
-