Interface PublisherDecorator
-
- All Known Implementing Classes:
MetricDecorator
,MicrometerDecorator
public interface PublisherDecorator
SPI to allow extension of publishers (Multi) included in the final graph
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.smallrye.mutiny.Multi<? extends Message<?>>
decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName)
Decorate a Multi
-
-
-
Method Detail
-
decorate
io.smallrye.mutiny.Multi<? extends Message<?>> decorate(io.smallrye.mutiny.Multi<? extends Message<?>> publisher, String channelName)
Decorate a Multi- Parameters:
publisher
- the multi to decoratechannelName
- the name of the channel to which this publisher publishes- Returns:
- the extended multi
-
-