AMQP-CPP/include/amqpcpp/exchangetype.h

37 lines
377 B
C
Raw Normal View History

/**
* ExchangeType.h
*
* The various exchange types that are supported
*
* @copyright 2014 Copernica BV
*/
2015-11-01 17:48:13 +08:00
/**
* Include guard
*/
#pragma once
/**
* Set up namespace
*/
namespace AMQP {
/**
* The class
*/
enum ExchangeType
{
fanout,
direct,
topic,
headers,
consistent_hash,
message_deduplication
};
/**
* End of namespace
*/
}