1 22 package org.jboss.mq.server; 23 24 import org.jboss.mq.SpyDestination; 25 26 32 public class BasicQueueParameters 33 { 34 35 public int maxDepth = 0; 36 37 38 public boolean inMemory = false; 39 40 41 public boolean lateClone = false; 42 43 44 public long redeliveryDelay = 0; 45 46 50 public int redeliveryLimit =-1 ; 51 52 53 public Class receiversImpl; 54 55 56 public int messageCounterHistoryDayLimit = 0; 57 58 59 public int recoveryRetries = 0; 60 61 62 public SpyDestination expiryDestination = null; 63 } 64 | Popular Tags |