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

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

/**
 * The UnhandledMessageHandler that will be invoked when an unhandled message
 * is received by the consumer.
 * 

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

* @version 1.0 * @since SINCE-TDB * @deprecated Use DefaultMessageHandler or MessageHandler instead. */ @Deprecated public interface UnhandledMessageHandler { /** * Handles the byte array, this is called from SpringAMQP when an unhandled * message is received. * * @param messagePayload The message payload */ void unhandledMessage(byte[] messagePayload); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy