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

com.dell.cpsd.common.rabbitmq.aggregate.MessageAggregator Maven / Gradle / Ivy

There is a newer version: 2.2.0
Show newest version
/**
 * Copyright © 2017 Dell Inc. or its subsidiaries.  All Rights Reserved.
 * Dell EMC Confidential/Proprietary Information
 */

package com.dell.cpsd.common.rabbitmq.aggregate;

import java.util.function.Consumer;

/**
 * Aggregator interface for aggregating multiple related messages.
 * 

* Copyright © 2017 Dell Inc. or its subsidiaries. All Rights Reserved. * Dell EMC Confidential/Proprietary Information *

* * @see Aggregator pattern * @see Spring integrations aggregator * @since 1.0 */ public interface MessageAggregator { /** * Trigger processing of an aggregate for given ID. */ void process(final String correlationId, final Consumer updateAction); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy