Package io.joynr.pubsub.subscription
Interface BroadcastSubscriptionListener
-
- All Superinterfaces:
SubscriptionListener
- All Known Subinterfaces:
GlobalCapabilitiesDirectoryBroadcastInterface.GlobalDiscoveryEntryChangedBroadcastListener,MessageNotificationBroadcastInterface.MessageQueuedForDeliveryBroadcastListener
- All Known Implementing Classes:
GlobalCapabilitiesDirectoryBroadcastInterface.GlobalDiscoveryEntryChangedBroadcastAdapter,MessageNotificationBroadcastInterface.MessageQueuedForDeliveryBroadcastAdapter
public interface BroadcastSubscriptionListener extends SubscriptionListener
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonError(SubscriptionException error)Gets called if the subscription registration failed at the provider.-
Methods inherited from interface io.joynr.pubsub.subscription.SubscriptionListener
onSubscribed
-
-
-
-
Method Detail
-
onError
void onError(SubscriptionException error)
Gets called if the subscription registration failed at the provider. Since the onError callback is called by a communication middleware thread, it should not be blocked, wait for user interaction, or do larger computation.- Parameters:
error- JoynrRuntimeException describing the error
-
-