Class SmartCacheSubscriber
- java.lang.Object
-
- org.uitnet.testing.smartfwk.ui.core.cache.SmartCacheSubscriber
-
- All Implemented Interfaces:
Flow.Subscriber<SmartCache>
public abstract class SmartCacheSubscriber extends Object implements Flow.Subscriber<SmartCache>
- Author:
- Madhav Krishna
-
-
Constructor Summary
Constructors Constructor Description SmartCacheSubscriber()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description voidonComplete()voidonError(Throwable throwable)protected abstract voidonMessage(SmartCache message)voidonNext(SmartCache item)voidonSubscribe(Flow.Subscription subscription)
-
-
-
Method Detail
-
onSubscribe
public void onSubscribe(Flow.Subscription subscription)
- Specified by:
onSubscribein interfaceFlow.Subscriber<SmartCache>
-
onNext
public void onNext(SmartCache item)
- Specified by:
onNextin interfaceFlow.Subscriber<SmartCache>
-
onError
public void onError(Throwable throwable)
- Specified by:
onErrorin interfaceFlow.Subscriber<SmartCache>
-
onComplete
public void onComplete()
- Specified by:
onCompletein interfaceFlow.Subscriber<SmartCache>
-
onMessage
protected abstract void onMessage(SmartCache message)
-
-