Examples of ResourceManagerImpl


Examples of com.caucho.jca.ra.ResourceManagerImpl

      ResourceManagerImpl.addResource((ResourceAdapter) _object);
      isStart = true;
    }

    if (_object instanceof ManagedConnectionFactory) {
      ResourceManagerImpl rm = ResourceManagerImpl.createLocalManager();

      ManagedConnectionFactory mcf;
      mcf = (ManagedConnectionFactory) _object;

      ConnectionPool cm = rm.createConnectionPool();

      cm.setShareable(_shareable);
      cm.setLocalTransactionOptimization(_localTransactionOptimization);
      Object connectionFactory = cm.init(mcf);
      cm.start();
View Full Code Here

Examples of com.caucho.jca.ra.ResourceManagerImpl

      } catch (Exception e) {
        throw ConfigException.create(e);
      }
    }

    ResourceManagerImpl rm = ResourceManagerImpl.create();

    ConnectionPool cm = rm.createConnectionPool();

    if (getName() != null)
      cm.setName(getName());

    cm.setMaxConnections(_maxConnections);
View Full Code Here

Examples of com.subhajit.common.listingprovider.ResourceManagerImpl

  public URLClassLoaderX(URL[] urls, IProgress... progresses)
      throws IOException, ClassNotFoundException {
    super(ZERO_LENGTH_URL_ARRAY);
    this.urls.addAll(Arrays.asList(urls));
    strategy = new ResourceManagerImpl(this.urls);
    parent = ClassLoader.getSystemClassLoader();
  }
View Full Code Here

Examples of com.subhajit.common.listingprovider.ResourceManagerImpl

  public URLClassLoaderX(URL[] urls, ClassLoader parent,
      IProgress... progresses) throws IOException, ClassNotFoundException {
    super(ZERO_LENGTH_URL_ARRAY, parent);
    this.urls.addAll(Arrays.asList(urls));
    strategy = new ResourceManagerImpl(this.urls);
    if (parent == null) {
      this.parent = ClassLoader.getSystemClassLoader();
    } else {
      this.parent = parent;
    }
View Full Code Here

Examples of com.subhajit.common.listingprovider.ResourceManagerImpl

  public URLClassLoaderX(URL[] urls, ClassLoader parent,
      URLStreamHandlerFactory factory, IProgress... progresses)
      throws IOException, ClassNotFoundException {
    super(ZERO_LENGTH_URL_ARRAY, parent, factory);
    this.urls.addAll(Arrays.asList(urls));
    strategy = new ResourceManagerImpl(this.urls);
    if (parent == null) {
      this.parent = ClassLoader.getSystemClassLoader();
    } else {
      this.parent = parent;
    }
View Full Code Here

Examples of org.hornetq.core.transaction.impl.ResourceManagerImpl

      queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager);

      pagingManager = createPagingManager();

      resourceManager = new ResourceManagerImpl((int)(configuration.getTransactionTimeout() / 1000),
                                                configuration.getTransactionTimeoutScanPeriod(),
                                                scheduledPool);
      postOffice = new PostOfficeImpl(this,
                                      storageManager,
                                      pagingManager,
View Full Code Here

Examples of org.hornetq.core.transaction.impl.ResourceManagerImpl

      queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager);

      pagingManager = createPagingManager();

      resourceManager = new ResourceManagerImpl((int)(configuration.getTransactionTimeout() / 1000),
                                                configuration.getTransactionTimeoutScanPeriod(),
                                                scheduledPool);
      postOffice = new PostOfficeImpl(this,
                                      storageManager,
                                      pagingManager,
View Full Code Here

Examples of org.hornetq.core.transaction.impl.ResourceManagerImpl

      queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager);

      pagingManager = createPagingManager();

      resourceManager = new ResourceManagerImpl((int)(configuration.getTransactionTimeout() / 1000),
                                                configuration.getTransactionTimeoutScanPeriod(),
                                                scheduledPool);
      postOffice = new PostOfficeImpl(this,
                                      storageManager,
                                      pagingManager,
View Full Code Here

Examples of org.hornetq.core.transaction.impl.ResourceManagerImpl

      queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager);

      pagingManager = createPagingManager();

      resourceManager = new ResourceManagerImpl((int)(configuration.getTransactionTimeout() / 1000),
         configuration.getTransactionTimeoutScanPeriod(),
         scheduledPool);
      postOffice = new PostOfficeImpl(this,
         storageManager,
         pagingManager,
View Full Code Here

Examples of org.hornetq.core.transaction.impl.ResourceManagerImpl

      queueFactory = new QueueFactoryImpl(executorFactory, scheduledPool, addressSettingsRepository, storageManager);

      pagingManager = createPagingManager();

      resourceManager = new ResourceManagerImpl((int)(configuration.getTransactionTimeout() / 1000),
         configuration.getTransactionTimeoutScanPeriod(),
         scheduledPool);
      postOffice = new PostOfficeImpl(this,
         storageManager,
         pagingManager,
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.