Package com.teamdev.jxbrowser.event
Interface Subscription
public interface Subscription
A subscription returns from
Observable.on(Class, Observer) to allow unsubscribing.-
Method Summary
Modifier and TypeMethodDescriptionbooleanReturnstrueif thisSubscriptionis currently unsubscribed.voidStops the receipt of notifications on theObservablethat was registered when thisSubscriptionwas received.
-
Method Details
-
unsubscribe
void unsubscribe()Stops the receipt of notifications on theObservablethat was registered when thisSubscriptionwas received. -
isUnsubscribed
boolean isUnsubscribed()Returnstrueif thisSubscriptionis currently unsubscribed.
-