Package org.springframework.amqp.core
Class TopicExchange
- java.lang.Object
-
- org.springframework.amqp.core.AbstractDeclarable
-
- org.springframework.amqp.core.AbstractExchange
-
- org.springframework.amqp.core.TopicExchange
-
- All Implemented Interfaces:
Declarable
,Exchange
public class TopicExchange extends AbstractExchange
Simple container collecting information to describe a topic exchange. Used in conjunction with administrative operations.- Author:
- Mark Pollack, Dave Syer
- See Also:
AmqpAdmin
-
-
Constructor Summary
Constructors Constructor Description TopicExchange(java.lang.String name)
TopicExchange(java.lang.String name, boolean durable, boolean autoDelete)
TopicExchange(java.lang.String name, boolean durable, boolean autoDelete, java.util.Map<java.lang.String,java.lang.Object> arguments)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getType()
The type of the exchange.-
Methods inherited from class org.springframework.amqp.core.AbstractExchange
getName, isAutoDelete, isDelayed, isDurable, isInternal, setDelayed, setInternal, toString
-
Methods inherited from class org.springframework.amqp.core.AbstractDeclarable
addArgument, getArguments, getDeclaringAdmins, isIgnoreDeclarationExceptions, removeArgument, setAdminsThatShouldDeclare, setIgnoreDeclarationExceptions, setShouldDeclare, shouldDeclare
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.springframework.amqp.core.Declarable
addArgument, getDeclaringAdmins, isIgnoreDeclarationExceptions, removeArgument, setAdminsThatShouldDeclare, shouldDeclare
-
Methods inherited from interface org.springframework.amqp.core.Exchange
getArguments
-
-
-
-
Constructor Detail
-
TopicExchange
public TopicExchange(java.lang.String name)
-
TopicExchange
public TopicExchange(java.lang.String name, boolean durable, boolean autoDelete)
-
TopicExchange
public TopicExchange(java.lang.String name, boolean durable, boolean autoDelete, java.util.Map<java.lang.String,java.lang.Object> arguments)
-
-
Method Detail
-
getType
public final java.lang.String getType()
Description copied from interface:Exchange
The type of the exchange. SeeExchangeTypes
for some well-known examples.- Specified by:
getType
in interfaceExchange
- Specified by:
getType
in classAbstractExchange
- Returns:
- the type of the exchange.
-
-