RxJava



rx.operators
Class OperationWindow.Window<T>

java.lang.Object
  extended by rx.operators.ChunkedOperation.Chunk<T,Observable<T>>
      extended by rx.operators.OperationWindow.Window<T>
Type Parameters:
T - The type of objects which this OperationWindow.Window can hold.
Enclosing class:
OperationWindow

protected static class OperationWindow.Window<T>
extends ChunkedOperation.Chunk<T,Observable<T>>

This class represents a single window: A sequence of recorded values.


Field Summary
 
Fields inherited from class rx.operators.ChunkedOperation.Chunk
contents
 
Constructor Summary
protected OperationWindow.Window()
           
 
Method Summary
 Observable<T> getContents()
           
 
Methods inherited from class rx.operators.ChunkedOperation.Chunk
pushValue, size
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

OperationWindow.Window

protected OperationWindow.Window()
Method Detail

getContents

public Observable<T> getContents()
Specified by:
getContents in class ChunkedOperation.Chunk<T,Observable<T>>
Returns:
The mutable underlying Observable which contains all the recorded values in this OperationWindow.Window object.