Package | Description |
---|---|
io.smallrye.mutiny.groups | |
io.smallrye.mutiny.helpers | |
io.smallrye.mutiny.operators | |
io.smallrye.mutiny.operators.multi.multicast | |
io.smallrye.mutiny.subscription |
Modifier and Type | Method and Description |
---|---|
Cancellable |
MultiSubscribe.with(Consumer<? super org.reactivestreams.Subscription> onSubscription,
Consumer<? super T> onItem,
Consumer<? super Throwable> onFailure,
Runnable onComplete)
Subscribes to the
Multi to start receiving the items. |
Cancellable |
MultiSubscribe.with(Consumer<? super T> onItem)
Subscribes to the
Multi to start receiving the items. |
Cancellable |
UniSubscribe.with(Consumer<? super T> onItemCallback)
Like
UniSubscribe.withSubscriber(UniSubscriber) with creating an artificial UniSubscriber calling the
onItem when the item is received. |
Cancellable |
MultiSubscribe.with(Consumer<? super T> onItem,
Consumer<? super Throwable> onFailure)
Subscribes to the
Multi to start receiving the items. |
Cancellable |
UniSubscribe.with(Consumer<? super T> onItemCallback,
Consumer<? super Throwable> onFailureCallback)
Like
UniSubscribe.withSubscriber(UniSubscriber) with creating an artificial UniSubscriber calling the
onItem and onFailure callbacks when the events are received. |
Cancellable |
MultiSubscribe.with(Consumer<? super T> onItem,
Consumer<? super Throwable> onFailure,
Runnable onComplete)
Subscribes to the
Multi to start receiving the items. |
Cancellable |
MultiSubscribe.with(Consumer<? super T> onItem,
Runnable onComplete)
Subscribes to the
Multi to start receiving the items. |
Modifier and Type | Class and Description |
---|---|
class |
EmptyUniSubscription
An implementation of
UniSubscription ignoring all call to EmptyUniSubscription.cancel() . |
static class |
Subscriptions.EmptySubscription |
class |
UniCallbackSubscriber<T>
Implementation of a
UniSubscriber based on callbacks. |
Modifier and Type | Class and Description |
---|---|
class |
DefaultUniEmitter<T>
Implementation of the Uni Emitter.
|
protected static class |
UniOnItemTransformToUni.FlatMapSubscription |
class |
UniSerializedSubscriber<T>
An implementation of
UniSubscriber and UniSubscription making sure event handlers are only called once. |
Modifier and Type | Method and Description |
---|---|
void |
ConnectableMultiConnection.accept(Cancellable action) |
Modifier and Type | Interface and Description |
---|---|
interface |
CancellableSubscriber<T> |
interface |
UniSubscription
A
Subscription for the Uni type. |
Modifier and Type | Class and Description |
---|---|
static class |
Subscribers.CallbackBasedSubscriber<T> |
Copyright © 2019–2020 SmallRye. All rights reserved.