Skip to content

Commit

Permalink
Deprecate PublisherDecorator#decorate(String, String, boolean)
Browse files Browse the repository at this point in the history
  • Loading branch information
ozangunalp committed Nov 30, 2023
1 parent 3fc59e9 commit 9ea3c10
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,13 @@ public interface PublisherDecorator extends Prioritized {
* @param channelName the name of the channel to which this publisher publishes
* @param isConnector {@code true} if decorated channel is connector
* @return the extended multi
* @deprecated replaced with {@link #decorate(Multi, List, boolean)}
*/
Multi<? extends Message<?>> decorate(Multi<? extends Message<?>> publisher, String channelName,
boolean isConnector);
@Deprecated(since = "4.10.1")
default Multi<? extends Message<?>> decorate(Multi<? extends Message<?>> publisher, String channelName,
boolean isConnector) {
return publisher;
}

/**
* Decorate a Multi
Expand Down

0 comments on commit 9ea3c10

Please sign in to comment.