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

com.dell.cpsd.common.rabbitmq.consumer.handler.MessageHandler 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.consumer.handler;

import org.springframework.amqp.core.Message;

/**
 * Handles specific AMQP message.
 * 

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

*/ public interface MessageHandler { boolean canHandle(Message message, Object body); void handleMessage(T message) throws Exception; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy