Interface RemoteControl.RemoteControlProvider
-
- Enclosing class:
- RemoteControl
public static interface RemoteControl.RemoteControlProvider
An interface which should be implemented by the Provider for the RemoteControl class.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
send(String action, String data, byte[] binarydata)
Send a messagevoid
setRemoteControl(RemoteControl control)
Set the RemoteControl using this Provider.
-
-
-
Method Detail
-
setRemoteControl
void setRemoteControl(RemoteControl control)
Set the RemoteControl using this Provider.- Parameters:
control
- if not null, this provider has been added to a RemoteControl, otherwise it has been removed from the previous RemoteControl
-
send
void send(String action, String data, byte[] binarydata) throws IOException
Send a message- Parameters:
action
- the actiondata
- the databinarydata
- the binary data- Throws:
IOException
-
-