RxJava2 Flashcards

1
Q

Flowable

A

The Flowable class that implements the Reactive-Streams Pattern (Publisher) and offers factory methods, intermediate operators and the ability to consume reactive dataflows.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Observable

A

The Observable class is the non-backpressured, optionally multi-valued base reactive class that offers factory methods, intermediate operators and the ability to consume synchronous and/or asynchronous reactive dataflows

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Subject

A

Represents an Observer and an Observable at the same time, allowing multicasting events from a single source to multiple child Observers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Observer

A

Provides a mechanism for receiving push-based notifications.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Disposable

A

Represents a disposable resource.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Processor

A

A Processor represents a processing stage—which is both a Subscriber and a Publisher and obeys the contracts of both. (Like Subject, but conforming to the Reactive Streams spec it has backpressure support)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

ParallelFlowable

A

Abstract base class for Parallel publishers that take an array of Subscribers.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Completable

A

Represents a deferred computation without any value but only indication for completion or error (onSubscribe, onComplete and onError).
Similar to Single, but does not return any value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

RxJavaPlugins

A

Utility class to inject handlers to certain standard RxJava operations.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Single

A

Observable which returns single result or error and then finishes (onSuccess and onError)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Maybe

A

It is a union of Single and Completable providing the means to capture an emission pattern where there could be 0 or 1 item or an error signalled by some reactive source.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

ObservableSource

A

Basic interface, inherited by Observable class.

Has only one subscribe(Observer super T> observer) function.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly