Interface UpnpIOParticipant
public interface UpnpIOParticipant
The
UpnpIOParticipant is an interface that needs to
be implemented by classes that wants to participate in
UPNP communication- Author:
- Karel Goderis - Initial contribution
-
Method Summary
Modifier and TypeMethodDescriptiongetUDN()Get the UDN of the participantvoidonServiceSubscribed(String service, boolean succeeded) Called to notify if a GENA subscription succeeded or failed.voidonStatusChanged(boolean status) Called when the UPNP IO service is unable to poll the UDN of the participant, given that an addStatusListener is registered.voidonValueReceived(String variable, String value, String service) Called when the UPNP IO service receives a {variable,value} tuple for the given UPNP service
-
Method Details
-
getUDN
String getUDN()Get the UDN of the participant -
onValueReceived
Called when the UPNP IO service receives a {variable,value} tuple for the given UPNP service -
onServiceSubscribed
Called to notify if a GENA subscription succeeded or failed.- Parameters:
service- the UPnP service subscribedsucceeded- true if the subscription succeeded; false if failed
-
onStatusChanged
void onStatusChanged(boolean status) Called when the UPNP IO service is unable to poll the UDN of the participant, given that an addStatusListener is registered.- Parameters:
status- false, if the poll fails when the polling was previously successful; true if the poll succeeds when the polling was previously failing
-