AssertSubscriber<T> |
AssertSubscriber.assertCompleted() |
Assert that the multi has completed.
|
AssertSubscriber<T> |
AssertSubscriber.assertFailedWith(java.lang.Class<? extends java.lang.Throwable> expectedTypeOfFailure,
java.lang.String expectedFailureMessage) |
Assert that the multi has failed.
|
AssertSubscriber<T> |
AssertSubscriber.assertHasNotReceivedAnyItem() |
Assert that no item has been received yet.
|
AssertSubscriber<T> |
AssertSubscriber.assertItems(T... expected) |
Assert that a sequence of items has been received (in whole and in exact order).
|
AssertSubscriber<T> |
AssertSubscriber.assertNotSubscribed() |
Assert that the multi has not been subscribed.
|
AssertSubscriber<T> |
AssertSubscriber.assertNotTerminated() |
Assert that the multi has not been terminated.
|
AssertSubscriber<T> |
AssertSubscriber.assertSubscribed() |
Assert that the multi has been subscribed.
|
AssertSubscriber<T> |
AssertSubscriber.assertTerminated() |
Assert that the multi has been terminated.
|
AssertSubscriber<T> |
AssertSubscriber.await() |
Await for the multi to be terminated.
|
AssertSubscriber<T> |
AssertSubscriber.await(java.time.Duration duration) |
Await for the multi to be terminated.
|
AssertSubscriber<T> |
AssertSubscriber.cancel() |
Cancel the subscription.
|
static <T> AssertSubscriber<T> |
AssertSubscriber.create() |
Creates a new AssertSubscriber with 0 requested items and no upfront cancellation.
|
static <T> AssertSubscriber<T> |
AssertSubscriber.create(long requested) |
|
AssertSubscriber<T> |
AssertSubscriber.request(long req) |
Request items.
|
AssertSubscriber<T> |
AssertSubscriber.run(java.lang.Runnable action) |
Run an action.
|