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

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

/**
 * A callback that is used for processing the @Message annotations.
 * 

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

* @version 1.0 * @since SINCE-TDB */ public interface MessageAnnotationProcessorCallback { /** * Callback method that is called for a class that contains the Message annotation. * * @param messageType The messageType specified within the annotation. * @param messageClass The class that contains message annotation. */ void found(String messageType, Class messageClass); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy