This project has retired. For details please refer to its
Attic page .
Observer (REEF 0.14.0 API)
JavaScript is disabled on your browser.
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
Type Parameters: T
-
All Known Subinterfaces:
RxStage <T>, Subject <InType,OutType>
All Known Implementing Classes:
AbstractObserver , AbstractRxStage , EventPrinter , RxSyncStage , RxThreadPoolStage , SimpleSubject , TimeoutSubject
public interface Observer <T>
Provides a mechanism for receiving push-based notifications. Implicit
contract: zero or more calls of onNext, if a sequence terminates, it is
terminated by onError or onCompleted in T
Method Summary
Methods
Modifier and Type
Method and Description
void
onCompleted ()
Notifies the observer that the provider has finished sending push-based
notifications.
void
onError (Exception error)
Notifies the observer that the provider has experienced an error
condition.
void
onNext (T value)
Provides the observer with new data.
Summary:
Nested |
Field |
Constr |
Method
Detail:
Field |
Constr |
Method
Copyright © 2016 The Apache Software Foundation . All rights reserved.