All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.integration.channel.ChannelPurger Maven / Gradle / Ivy

There is a newer version: 6.3.3
Show newest version
/*
 * Copyright 2002-2019 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.integration.channel;

import java.util.ArrayList;
import java.util.List;

import org.springframework.integration.core.MessageSelector;
import org.springframework.lang.Nullable;
import org.springframework.messaging.Message;
import org.springframework.util.Assert;

/**
 * A utility class for purging {@link Message Messages} from one or more
 * {@link QueueChannel QueueChannels}. Any message that does not
 * match the provided {@link MessageSelector} will be removed from the channel.
 * If no {@link MessageSelector} is provided, then all messages will be
 * cleared from the channel.
 * 

* Note that the {@link #purge()} method operates on a snapshot of the messages * within a channel at the time that the method is invoked. It is therefore * possible that new messages will arrive on the channel during the purge * operation and thus will not be removed. Likewise, messages to be * purged may have been removed from the channel while the operation is taking * place. Such messages will not be included in the returned list. * * @author Mark Fisher * @author Gary Russell */ public class ChannelPurger { private final QueueChannel[] channels; private final MessageSelector selector; public ChannelPurger(QueueChannel... channels) { this(null, channels); } public ChannelPurger(@Nullable MessageSelector selector, QueueChannel... channels) { Assert.notEmpty(channels, "at least one channel is required"); if (channels.length == 1) { Assert.notNull(channels[0], "channel must not be null"); } this.selector = selector; this.channels = channels; } public final List> purge() { List> purgedMessages = new ArrayList>(); for (QueueChannel channel : this.channels) { List> results = (this.selector == null) ? channel.clear() : channel.purge(this.selector); if (results != null) { purgedMessages.addAll(results); } } return purgedMessages; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy