Package | Description |
---|---|
org.apache.reef.wake.examples.accumulate |
A key-value combiner example.
|
org.apache.reef.wake.examples.join |
Blocking and non-blocking join example.
|
org.apache.reef.wake.rx |
Wake's RX-style communication.
|
org.apache.reef.wake.rx.impl |
Wake's RX-style communication implementation.
|
Modifier and Type | Method and Description |
---|---|
Observer<Map.Entry<K,V>> |
CombinerStage.wireIn() |
Constructor and Description |
---|
CombinerStage(CombinerStage.Combiner<K,V> c,
Observer<Map.Entry<K,V>> o) |
Modifier and Type | Class and Description |
---|---|
class |
EventPrinter<T>
Event printer.
|
Modifier and Type | Method and Description |
---|---|
Observer<TupleEvent> |
NonBlockingJoin.wireLeft() |
Observer<TupleEvent> |
BlockingJoin.wireLeft() |
Observer<TupleEvent> |
NonBlockingJoin.wireRight() |
Observer<TupleEvent> |
BlockingJoin.wireRight() |
Constructor and Description |
---|
BlockingJoin(Observer<TupleEvent> out) |
NonBlockingJoin(Observer<TupleEvent> out) |
TupleSource(Observer<TupleEvent> out,
int max,
int numThreads,
boolean evenOnly) |
Modifier and Type | Interface and Description |
---|---|
interface |
RxStage<T>
Stage that executes the observer.
|
interface |
Subject<InType,OutType>
A class implementing
Observer<InType> and StaticObservable<OutType> . |
Modifier and Type | Class and Description |
---|---|
class |
AbstractObserver<T>
An
Observer with logging-only onError and onCompleted() methods. |
class |
AbstractRxStage<T>
An
RxStage that implements metering. |
Modifier and Type | Method and Description |
---|---|
AutoCloseable |
DynamicObservable.subscribe(Observer<T> o)
Subscribes the observer to this observable object.
|
Modifier and Type | Class and Description |
---|---|
class |
RxSyncStage<T>
Stage that executes the observer synchronously.
|
class |
RxThreadPoolStage<T>
Stage that executes the observer with a thread pool.
|
class |
SimpleSubject<T>
A Subject that relays all messages to its subscribers.
|
Constructor and Description |
---|
RxSyncStage(Observer<T> observer)
Constructs a Rx synchronous stage.
|
RxSyncStage(String name,
Observer<T> observer)
Constructs a Rx synchronous stage.
|
RxThreadPoolStage(Observer<T> observer,
int numThreads)
Constructs a Rx thread pool stage.
|
RxThreadPoolStage(String name,
Observer<T> observer,
int numThreads)
Constructs a Rx thread pool stage.
|
SimpleSubject(Observer<T> observer)
Constructs a simple subject.
|
Copyright © 2017 The Apache Software Foundation. All rights reserved.