- emit(T...) - Method in class reactor.test.publisher.TestPublisher
-
Combine emitting items and completing this publisher.
- empty() - Static method in interface reactor.test.publisher.PublisherProbe
-
- error(Throwable) - Method in class reactor.test.publisher.TestPublisher
-
Triggers an
error
signal to the subscribers.
- expectComplete() - Method in interface reactor.test.StepVerifier.LastStep
-
Expect the completion signal.
- expectError() - Method in interface reactor.test.StepVerifier.LastStep
-
Expect an unspecified error.
- expectError(Class<? extends Throwable>) - Method in interface reactor.test.StepVerifier.LastStep
-
Expect an error of the specified type.
- expectErrorMatches(Predicate<Throwable>) - Method in interface reactor.test.StepVerifier.LastStep
-
Expect an error and evaluate with the given predicate.
- expectErrorMessage(String) - Method in interface reactor.test.StepVerifier.LastStep
-
Expect an error with the specified message.
- expectErrorSatisfies(Consumer<Throwable>) - Method in interface reactor.test.StepVerifier.LastStep
-
Expect an error and assert it via assertion(s) provided as a
Consumer
.
- expectFusion() - Method in interface reactor.test.StepVerifier.FirstStep
-
Expect the source
Publisher
to run with Reactor Fusion flow
optimization.
- expectFusion(int) - Method in interface reactor.test.StepVerifier.FirstStep
-
- expectFusion(int, int) - Method in interface reactor.test.StepVerifier.FirstStep
-
Expect the source
Publisher
to run with Reactor Fusion flow
optimization.
- expectNext(T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next element received to be equal to the given value.
- expectNext(T, T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNext(T, T, T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNext(T, T, T, T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNext(T, T, T, T, T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNext(T, T, T, T, T, T) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNext(T...) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements received to be equal to the given values.
- expectNextCount(long) - Method in interface reactor.test.StepVerifier.Step
-
Expect to received count
elements, starting from the previous
expectation or onSubscribe.
- expectNextMatches(Predicate<? super T>) - Method in interface reactor.test.StepVerifier.Step
-
Expect an element and evaluate with the given predicate.
- expectNextSequence(Iterable<? extends T>) - Method in interface reactor.test.StepVerifier.Step
-
Expect the next elements to match the given
Iterable
until its
iterator depletes.
- expectNoEvent(Duration) - Method in interface reactor.test.StepVerifier.FirstStep
-
Expect no event and no Subscription has been observed by the verifier for the
length of the provided
Duration
.
- expectNoEvent(Duration) - Method in interface reactor.test.StepVerifier.Step
-
Expect that no event has been observed by the verifier for the length of
the provided
Duration
.
- expectNoFusionSupport() - Method in interface reactor.test.StepVerifier.FirstStep
-
Expect the source
Publisher
to NOT run with Reactor Fusion flow
optimization.
- expectRecordedMatches(Predicate<? super Collection<T>>) - Method in interface reactor.test.StepVerifier.Step
-
- expectSubscription() - Method in interface reactor.test.StepVerifier.FirstStep
-
- expectSubscriptionMatches(Predicate<? super Subscription>) - Method in interface reactor.test.StepVerifier.FirstStep
-
Expect a
Subscription
and evaluate with the given predicate.