Uses of Interface
io.smallrye.mutiny.subscription.UniSubscriber
-
-
Uses of UniSubscriber in io.smallrye.mutiny.groups
Methods in io.smallrye.mutiny.groups with type parameters of type UniSubscriber Modifier and Type Method Description <S extends UniSubscriber<? super T>>
SUniSubscribe. withSerializedSubscriber(S subscriber)Requests theUnito start computing the item, but wraps the provided subscriber in aUniSerializedSubscriberinstance that enforces correct events ordering.<S extends UniSubscriber<? super T>>
SUniSubscribe. withSubscriber(S subscriber)Requests theUnito start computing the item. -
Uses of UniSubscriber in io.smallrye.mutiny.helpers.spies
Methods in io.smallrye.mutiny.helpers.spies with parameters of type UniSubscriber Modifier and Type Method Description voidUniGlobalSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnCancellationSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnFailureSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnItemOrFailureSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnItemSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnSubscribeSpy. subscribe(UniSubscriber<? super T> downstream)voidUniOnTerminationSpy. subscribe(UniSubscriber<? super T> downstream) -
Uses of UniSubscriber in io.smallrye.mutiny.helpers.test
Classes in io.smallrye.mutiny.helpers.test that implement UniSubscriber Modifier and Type Class Description classUniAssertSubscriber<T>AUniUniSubscriberfor testing purposes that comes with useful assertion helpers. -
Uses of UniSubscriber in io.smallrye.mutiny.infrastructure
Methods in io.smallrye.mutiny.infrastructure that return UniSubscriber Modifier and Type Method Description default <T> UniSubscriber<? super T>UniInterceptor. onSubscription(Uni<T> instance, UniSubscriber<? super T> subscriber)Method called when a subscriber subscribes to aUni.static <T> UniSubscriber<? super T>Infrastructure. onUniSubscription(Uni<T> instance, UniSubscriber<? super T> subscriber)Methods in io.smallrye.mutiny.infrastructure with parameters of type UniSubscriber Modifier and Type Method Description default <T> UniSubscriber<? super T>UniInterceptor. onSubscription(Uni<T> instance, UniSubscriber<? super T> subscriber)Method called when a subscriber subscribes to aUni.static <T> UniSubscriber<? super T>Infrastructure. onUniSubscription(Uni<T> instance, UniSubscriber<? super T> subscriber) -
Uses of UniSubscriber in io.smallrye.mutiny.operators
Methods in io.smallrye.mutiny.operators with parameters of type UniSubscriber Modifier and Type Method Description abstract voidAbstractUni. subscribe(UniSubscriber<? super T> subscriber)static <T> voidAbstractUni. subscribe(Uni<? extends T> upstream, UniSubscriber<? super T> subscriber)Encapsulates subscription to slightly optimize the AbstractUni case. -
Uses of UniSubscriber in io.smallrye.mutiny.subscription
Classes in io.smallrye.mutiny.subscription that implement UniSubscriber Modifier and Type Class Description classUniDelegatingSubscriber<I,O>classUniSerializedSubscriber<T>An implementation ofUniSubscriberandUniSubscriptionmaking sure event handlers are only called once.Methods in io.smallrye.mutiny.subscription with parameters of type UniSubscriber Modifier and Type Method Description static <T> voidUniSerializedSubscriber. subscribe(AbstractUni<T> source, UniSubscriber<? super T> subscriber)Constructors in io.smallrye.mutiny.subscription with parameters of type UniSubscriber Constructor Description UniDelegatingSubscriber(UniSubscriber<? super O> subscriber)UniSerializedSubscriber(AbstractUni<T> upstream, UniSubscriber<? super T> subscriber)
-