Interface PublisherDecorator
-
- All Superinterfaces:
javax.enterprise.inject.spi.Prioritized,PublisherDecorator
@Deprecated public interface PublisherDecorator extends PublisherDecorator
Deprecated.usePublisherDecoratorinsteadSPI to allow extension of publishers (Multi) included in the final graph
-
-
Field Summary
-
Fields inherited from interface io.smallrye.reactive.messaging.PublisherDecorator
DEFAULT_PRIORITY
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description io.smallrye.mutiny.Multi<? extends Message<?>>decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName)Deprecated.Decorate a Multidefault io.smallrye.mutiny.Multi<? extends Message<?>>decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName, boolean isConnector)Deprecated.-
Methods inherited from interface io.smallrye.reactive.messaging.PublisherDecorator
getPriority
-
-
-
-
Method Detail
-
decorate
default io.smallrye.mutiny.Multi<? extends Message<?>> decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName, boolean isConnector)
Deprecated.- Specified by:
decoratein interfacePublisherDecorator
-
decorate
io.smallrye.mutiny.Multi<? extends Message<?>> decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName)
Deprecated.Decorate a Multi- Parameters:
publisher- the multi to decoratechannelName- the name of the channel to which this publisher publishes- Returns:
- the extended multi
-
-