public interface IRemoteConnectionListener
IRemote object| Modifier and Type | Method and Description | 
|---|---|
| void | connected(IRemote remote)Called when an IRemote is connected | 
| default void | connectedEx(IRemote remote,
           ConnectionInfo info)Extended version of connected called when an IRemote is connected. | 
| void | disconnected(IRemote remote)Called when an IRemote is disconnected | 
| default void | disconnectedEx(IRemote remote,
              ConnectionInfo info)Extended version of connected called when an IRemote is disconnected. | 
void connected(IRemote remote)
remote - the object that connectedvoid disconnected(IRemote remote)
remote - the object that disconnecteddefault void connectedEx(IRemote remote, ConnectionInfo info)
remote - the object that connectedinfo - the connection info for the connected remotedefault void disconnectedEx(IRemote remote, ConnectionInfo info)
remote - the object that disconnectedinfo - the connection info for the disconnected remote