1 22 package org.jboss.ejb.plugins.jms; 23 24 import org.jboss.metadata.MessageDrivenMetaData; 25 26 32 public interface JMSContainerInvokerMBean extends org.jboss.system.ServiceMBean 33 { 34 39 int getMinPoolSize(); 40 41 46 void setMinPoolSize(int minPoolSize); 47 48 53 int getMaxPoolSize(); 54 55 60 void setMaxPoolSize(int maxPoolSize); 61 62 67 long getKeepAliveMillis(); 68 69 74 void setKeepAliveMillis(long keepAlive); 75 76 81 int getMaxMessages(); 82 83 88 void setMaxMessages(int maxMessages); 89 90 95 MessageDrivenMetaData getMetaData(); 96 97 102 boolean getDeliveryActive(); 103 104 110 boolean getCreateJBossMQDestination(); 111 112 117 void startDelivery() throws Exception ; 118 119 124 void stopDelivery() throws Exception ; 125 } 126 | Popular Tags |