RxJava

B C D E F G J N O R S T U 

B

byCharacter(Observable<String>) - Static method in class rx.observables.StringObservable
Converts a String into an Observable that emits the chars in the String.
byLine(Observable<String>) - Static method in class rx.observables.StringObservable
Splits the Observable of Strings by line ending characters in a platform independent way.

C

call(Subscriber<? super String>) - Method in class rx.internal.operators.ObservableSplit
 
call() - Method in interface rx.observables.StringObservable.UnsafeFunc0
 

D

decode(Observable<byte[]>, String) - Static method in class rx.observables.StringObservable
Decodes a stream of multibyte chunks into a stream of strings that works on infinite streams and where handles when a multibyte character spans two chunks.
decode(Observable<byte[]>, Charset) - Static method in class rx.observables.StringObservable
Decodes a stream of multibyte chunks into a stream of strings that works on infinite streams and where handles when a multibyte character spans two chunks.
decode(Observable<byte[]>, CharsetDecoder) - Static method in class rx.observables.StringObservable
Decodes a stream of multibyte chunks into a stream of strings that works on infinite streams and handles when a multibyte character spans two chunks.

E

encode(Observable<String>, String) - Static method in class rx.observables.StringObservable
Encodes a possibly infinite stream of strings into an Observable of byte arrays.
encode(Observable<String>, Charset) - Static method in class rx.observables.StringObservable
Encodes a possibly infinite stream of strings into an Observable of byte arrays.
encode(Observable<String>, CharsetEncoder) - Static method in class rx.observables.StringObservable
Encodes a possibly infinite stream of strings into an Observable of byte arrays.

F

from(InputStream) - Static method in class rx.observables.StringObservable
Reads bytes from a source InputStream and outputs Observable of byte[]s.
from(InputStream, int) - Static method in class rx.observables.StringObservable
Reads bytes from a source InputStream and outputs Observable of byte[]s.
from(Reader) - Static method in class rx.observables.StringObservable
Reads characters from a source Reader and outputs Observable of Strings.
from(Reader, int) - Static method in class rx.observables.StringObservable
Reads characters from a source Reader and outputs Observable of Strings.

G

generateState() - Method in class rx.internal.operators.OnSubscribeInputStream
 
generateState() - Method in class rx.internal.operators.OnSubscribeReader
 

J

join(Observable<String>, CharSequence) - Static method in class rx.observables.StringObservable
Concatenates the sequence of values by adding a separator between them and emitting the result once the source completes.

N

next(InputStream, Observer<? super byte[]>) - Method in class rx.internal.operators.OnSubscribeInputStream
 
next(Reader, Observer<? super String>) - Method in class rx.internal.operators.OnSubscribeReader
 

O

ObservableSplit - Class in rx.internal.operators
Split a sequence of strings based on a Rexexp pattern spanning subsequent items if necessary.
ObservableSplit(Observable<String>, Pattern, int) - Constructor for class rx.internal.operators.ObservableSplit
 
OnSubscribeInputStream - Class in rx.internal.operators
 
OnSubscribeInputStream(InputStream, int) - Constructor for class rx.internal.operators.OnSubscribeInputStream
 
OnSubscribeReader - Class in rx.internal.operators
 
OnSubscribeReader(Reader, int) - Constructor for class rx.internal.operators.OnSubscribeReader
 

R

rx.internal.operators - package rx.internal.operators
 
rx.observables - package rx.observables
 

S

split(Observable<String>, String) - Static method in class rx.observables.StringObservable
Rechunks the strings based on a regex pattern and works on infinite stream.
split(Observable<String>, Pattern) - Static method in class rx.observables.StringObservable
Rechunks the strings based on a regex pattern and works on infinite stream.
stringConcat(Observable<String>) - Static method in class rx.observables.StringObservable
Gather up all of the strings in to one string to be able to use it as one message.
StringObservable - Class in rx.observables
 
StringObservable() - Constructor for class rx.observables.StringObservable
 
StringObservable.UnsafeFunc0<R> - Interface in rx.observables
Func0 that allows throwing an IOExceptions commonly thrown during IO operations.

T

toString(Observable<?>) - Static method in class rx.observables.StringObservable
Maps Observable<Object> to Observable<String> by using String.valueOf(Object)

U

using(StringObservable.UnsafeFunc0<S>, Func1<S, Observable<R>>) - Static method in class rx.observables.StringObservable
Helps in creating an Observable that automatically calls Closeable.close() on completion, error or unsubscribe.
B C D E F G J N O R S T U