Package de.scoopgmbh.copper.management

Examples of de.scoopgmbh.copper.management.ProcessingEngineMXBean


    statisticsCollectorMXBean.reset();
  }

  @Override
  public void setBatcherNumThreads(final int numThread, final String engineid) {
    ProcessingEngineMXBean engine =  engines.get(engineid);
    if (engine instanceof PersistentProcessingEngineMXBean){
      DBStorageMXBean storage =  ((PersistentProcessingEngineMXBean)engine).getDBStorage();
      if (storage instanceof ScottyDBStorageMXBean){
        BatcherMXBean batcherMXBean = ((ScottyDBStorageMXBean)storage).getBatcherMXBean();
        if(batcherMXBean != null) {
View Full Code Here


  public List<MessageInfo> getMessageList(final boolean ignoreProcceded,long resultRowLimit) {
    return dbStorage.selectMessages(ignoreProcceded,resultRowLimit);
  }

  private ProcessorPoolMXBean getPool(String poolId, String engineid){
    ProcessingEngineMXBean engine = engines.get(engineid);
    if (engine!=null){
      for (ProcessorPoolMXBean pool: engine.getProcessorPools()){
        if (pool.getId().equals(poolId)){
          return pool;
        }
      }
    }
View Full Code Here

TOP

Related Classes of de.scoopgmbh.copper.management.ProcessingEngineMXBean

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.