1 23 package org.objectweb.joram.mom.dest; 24 25 public interface QueueImplMBean extends DestinationImplMBean { 26 31 long getPeriod(); 32 33 39 void setPeriod(long period); 40 41 46 int getThreshold(); 47 48 54 void setThreshold(int threshold); 55 56 61 int getMessageCounter(); 62 63 68 int getWaitingRequestCount(); 69 70 75 80 int getPendingMessageCount(); 81 82 87 92 int getDeliveredMessageCount(); 93 94 101 int getNbMaxMsg(); 102 103 108 void setNbMaxMsg(int nbMaxMsg); 109 } 110 | Popular Tags |