RxJava



rx.operators
Class OperationBuffer.Buffer<T>

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

protected static class OperationBuffer.Buffer<T>
extends ChunkedOperation.Chunk<T,java.util.List<T>>

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


Field Summary
 
Fields inherited from class rx.operators.ChunkedOperation.Chunk
contents
 
Constructor Summary
protected OperationBuffer.Buffer()
           
 
Method Summary
 java.util.List<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

OperationBuffer.Buffer

protected OperationBuffer.Buffer()
Method Detail

getContents

public java.util.List<T> getContents()
Specified by:
getContents in class ChunkedOperation.Chunk<T,java.util.List<T>>
Returns:
The mutable underlying List which contains all the recorded values in this OperationBuffer.Buffer object.