Package | Description |
---|---|
reactor.core.publisher | |
reactor.test.subscriber |
Components supporting the creation of test-oriented
Subscribers . |
Modifier and Type | Method and Description |
---|---|
static <T> Fuseable.ConditionalSubscriber<? super T> |
Operators.toConditionalSubscriber(CoreSubscriber<? super T> actual)
If the actual
CoreSubscriber is not Fuseable.ConditionalSubscriber ,
it will apply an adapter which directly maps all
tryOnNext(Object) to
Subscriber.onNext(Object)
and always returns true as the result |
Modifier and Type | Interface and Description |
---|---|
interface |
ConditionalTestSubscriber<T>
Simple interface for a
Fuseable.ConditionalSubscriber variant of the
TestSubscriber . |