Spring AMQP

org.springframework.amqp.core
Class Queue

java.lang.Object
  extended by org.springframework.amqp.core.Queue
Direct Known Subclasses:
UniquelyNamedQueue

public class Queue
extends Object

Simple container collecting information to describe a queue. Used in conjunction with AmqpAdmin.

Author:
Mark Pollack
See Also:
AmqpAdmin

Constructor Summary
Queue(String name)
           
 
Method Summary
 Map<String,Object> getArguments()
           
 String getName()
           
 boolean isAutoDelete()
           
 boolean isDurable()
           
 boolean isExclusive()
           
 void setArguments(Map<String,Object> arguments)
           
 void setAutoDelete(boolean autoDelete)
           
 void setDurable(boolean durable)
           
 void setExclusive(boolean exclusive)
           
 String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Queue

public Queue(String name)
Method Detail

getName

public String getName()

isDurable

public boolean isDurable()

setDurable

public void setDurable(boolean durable)

isExclusive

public boolean isExclusive()

setExclusive

public void setExclusive(boolean exclusive)

isAutoDelete

public boolean isAutoDelete()

setAutoDelete

public void setAutoDelete(boolean autoDelete)

getArguments

public Map<String,Object> getArguments()

setArguments

public void setArguments(Map<String,Object> arguments)

toString

public String toString()
Overrides:
toString in class Object

Spring AMQP

Copyright © 2010. All Rights Reserved.