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

org.springframework.integration.aop.MessageSourceMutator Maven / Gradle / Ivy

There is a newer version: 6.2.4
Show newest version
/*
 * Copyright 2018-2020 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.aop;

import org.springframework.integration.core.MessageSource;
import org.springframework.lang.Nullable;
import org.springframework.messaging.Message;

/**
 * A {@link ReceiveMessageAdvice} extension that can mutate a {@link MessageSource} before and/or after
 * {@link MessageSource#receive()} is called.
 *
 * @author Gary Russell
 * @author Artem Bilan
 *
 * @since 5.0.7
 */
@FunctionalInterface
public interface MessageSourceMutator extends ReceiveMessageAdvice {

	@Override
	default boolean beforeReceive(Object source) {
		if (source instanceof MessageSource) {
			return beforeReceive((MessageSource) source);
		}
		else {
			throw new IllegalArgumentException(
					"The 'MessageSourceMutator' supports only a 'MessageSource' in the before/after hooks: " + source);
		}
	}

	/**
	 * Subclasses can decide whether to proceed with this poll.
	 * @param source the message source.
	 * @return true to proceed (default).
	 */
	default boolean beforeReceive(MessageSource source) {
		return true;
	}

	@Override
	@Nullable
	default Message afterReceive(@Nullable Message result, Object source) {
		if (source instanceof MessageSource) {
			return afterReceive(result, (MessageSource) source);
		}
		else {
			throw new IllegalArgumentException(
					"The 'MessageSourceMutator' supports only a 'MessageSource' in the before/after hooks: " + source);
		}
	}

	/**
	 * Subclasses can take actions based on the result of the poll; e.g.
	 * adjust the {@code trigger}. The message can also be replaced with a new one.
	 * @param result the received message.
	 * @param source the message source.
	 * @return a message to continue to process the result, null to discard whatever the poll returned.
	 */
	@Nullable
	Message afterReceive(@Nullable Message result, MessageSource source);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy