Package org.jboss.messaging.core.impl

Examples of org.jboss.messaging.core.impl.IDManager


                                                         PersistenceManager pm)
      throws Exception
   {
      FilterFactory ff = new SimpleFilterFactory();
      ConditionFactory cf = new SimpleConditionFactory();
      IDManager idm = new IDManager("channel_id", 10, pm);
      idm.start();
      ClusterNotifier cn = new DefaultClusterNotifier();

      // we're testing with JGroups stack configurations we're shipping with the release

      String configFilePath = sc.getPersistenceConfigFile(true);
View Full Code Here


                                                            PersistenceManager pm)
      throws Exception
   {
      FilterFactory ff = new SimpleFilterFactory();
      ConditionFactory cf = new SimpleConditionFactory();
      IDManager idm = new IDManager("channel_id", 10, pm);
      ClusterNotifier cn = new DefaultClusterNotifier();

      MessagingPostOffice postOffice =
         new MessagingPostOffice(sc.getDataSource(), sc.getTransactionManager(),
                                 sc.getPostOfficeSQLProperties(),
View Full Code Here

      ms.start();

      tr = new TransactionRepository(pm, ms, 0);
      tr.start();

      channelIDManager = new IDManager("CHANNEL_ID", 10, pm);
      channelIDManager.start();

      conditionFactory = new SimpleConditionFactory();

      log.debug("setup done");
View Full Code Here

/*      */
/*  241 */       this.jmsUserManager = ((JMSUserManager)JMXAccessor.getJMXAttributeOverSecurity(mbeanServer, this.jmsUserManagerObjectName, "Instance"));
/*      */
/*  243 */       this.strictTckProperty = "true".equalsIgnoreCase(System.getProperty("jboss.messaging.stricttck"));
/*      */
/*  249 */       this.messageIDManager = new IDManager("MESSAGE_ID", 4096, this.persistenceManager);
/*  250 */       this.channelIDManager = new IDManager("CHANNEL_ID", 10, this.persistenceManager);
/*  251 */       this.transactionIDManager = new IDManager("TRANSACTION_ID", 1024, this.persistenceManager);
/*  252 */       this.destinationJNDIMapper = new DestinationJNDIMapper(this);
/*  253 */       this.connFactoryJNDIMapper = new ConnectionFactoryJNDIMapper(this);
/*  254 */       this.connectionManager = new SimpleConnectionManager();
/*  255 */       this.connectorManager = new SimpleConnectorManager();
/*  256 */       this.memoryManager = new SimpleMemoryManager();
View Full Code Here

/*     */
/* 353 */       PersistenceManager pm = serverPeer.getPersistenceManagerInstance();
/*     */
/* 355 */       TransactionRepository tr = serverPeer.getTxRepository();
/*     */
/* 357 */       IDManager idManager = serverPeer.getChannelIDManager();
/*     */
/* 359 */       int nodeId = serverPeer.getServerPeerID();
/*     */
/* 361 */       ClusterNotifier clusterNotifier = serverPeer.getClusterNotifier();
/*     */
View Full Code Here

        
         // We get references to some plugins lazily to avoid problems with circular MBean
         // dependencies

         // Create the wired components
         messageIDManager = new IDManager("MESSAGE_ID", 4096, persistenceManager);
         channelIDManager = new IDManager("CHANNEL_ID", 10, persistenceManager);
         transactionIDManager = new IDManager("TRANSACTION_ID", 1024, persistenceManager);
         destinationJNDIMapper = new DestinationJNDIMapper(this);
         connFactoryJNDIMapper = new ConnectionFactoryJNDIMapper(this);
         connectionManager = new SimpleConnectionManager();        
         connectorManager = new SimpleConnectorManager();
         memoryManager = new SimpleMemoryManager();
View Full Code Here

                                                         PersistenceManager pm)
      throws Exception
   {
      FilterFactory ff = new SimpleFilterFactory();
      ConditionFactory cf = new SimpleConditionFactory();
      IDManager idm = new IDManager("channel_id", 10, pm);
      idm.start();
      ClusterNotifier cn = new DefaultClusterNotifier();

      // we're testing with JGroups stack configurations we're shipping with the release

      String configFilePath = sc.getPersistenceConfigFile(true);
View Full Code Here

                                                            PersistenceManager pm)
      throws Exception
   {
      FilterFactory ff = new SimpleFilterFactory();
      ConditionFactory cf = new SimpleConditionFactory();
      IDManager idm = new IDManager("channel_id", 10, pm);
      ClusterNotifier cn = new DefaultClusterNotifier();

      MessagingPostOffice postOffice =
         new MessagingPostOffice(sc.getDataSource(), sc.getTransactionManager(),
                                 sc.getPostOfficeSQLProperties(),
View Full Code Here

      ms.start();

      tr = new TransactionRepository(pm, ms, 0);
      tr.start();

      channelIDManager = new IDManager("CHANNEL_ID", 10, pm);
      channelIDManager.start();

      conditionFactory = new SimpleConditionFactory();

      log.debug("setup done");
View Full Code Here

TOP

Related Classes of org.jboss.messaging.core.impl.IDManager

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.