org.apache.activemq.apollo.dto
Class QueueDTO

java.lang.Object
  extended by org.apache.activemq.apollo.dto.QueueDTO
Direct Known Subclasses:
DurableSubscriptionDTO

public class QueueDTO
extends java.lang.Object

Author:
Hiram Chirino

Field Summary
 QueueAclDTO acl
           
 java.lang.Integer consumer_buffer
          The amount of memory buffer space to use per subscription.
 java.lang.String name
           
 java.lang.Boolean persistent
          Should this queue persistently store it's entries?
 java.lang.Integer producer_buffer
          The amount of memory buffer space for receiving messages.
 java.lang.Integer queue_buffer
          The amount of memory buffer space for the queue..
 java.lang.Boolean swap
          Should messages be swapped out of memory if no consumers need the message?
 java.lang.Integer swap_range_size
          The number max number of swapped queue entries to load from the store at a time.
 java.lang.Boolean unified
          If set to true, then routing then there is no difference between sending to a queue or topic of the same name.
 
Constructor Summary
QueueDTO()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

public java.lang.String name

unified

public java.lang.Boolean unified
If set to true, then routing then there is no difference between sending to a queue or topic of the same name. The first time a queue is created, it will act like if a durable subscription was created on the topic.


producer_buffer

public java.lang.Integer producer_buffer
The amount of memory buffer space for receiving messages.


queue_buffer

public java.lang.Integer queue_buffer
The amount of memory buffer space for the queue..


consumer_buffer

public java.lang.Integer consumer_buffer
The amount of memory buffer space to use per subscription.


persistent

public java.lang.Boolean persistent
Should this queue persistently store it's entries?


swap

public java.lang.Boolean swap
Should messages be swapped out of memory if no consumers need the message?


swap_range_size

public java.lang.Integer swap_range_size
The number max number of swapped queue entries to load from the store at a time. Not that swapped entries are just reference pointers to the actual messages. When not loaded, the batch is referenced as sequence range to conserve memory.


acl

public QueueAclDTO acl
Constructor Detail

QueueDTO

public QueueDTO()


Copyright © 2005-2011 The Apache Software Foundation. All Rights Reserved.