RxJava

B C D E F G H J R S T U 

B

byLine(Observable<String>) - Static method in class rx.observables.StringObservable
Splits the Observable of Strings by lines and numbers them (zero based index)

C

call() - Method in interface rx.observables.StringObservable.UnsafeFunc0
 

D

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

E

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

F

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

G

getNumber() - Method in class rx.observables.StringObservable.Line
 
getText() - Method in class rx.observables.StringObservable.Line
 

H

hashCode() - Method in class rx.observables.StringObservable.Line
 

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.

R

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.
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.Line - Class in rx.observables
 
StringObservable.Line(int, String) - Constructor for class rx.observables.StringObservable.Line
 
StringObservable.UnsafeFunc0<R> - Interface in rx.observables
Func0 that allows throwing an IOExceptions commonly thrown during IO operations.

T

toString() - Method in class rx.observables.StringObservable.Line
 
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 H J R S T U