JmxFlowRunnerManager.java

83 lines | 2.016 kB Blame History Raw Download
/*
 * Copyright 2014 LinkedIn Corp.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

package azkaban.execapp.jmx;

import azkaban.execapp.FlowRunnerManager;

public class JmxFlowRunnerManager implements JmxFlowRunnerManagerMBean {

  private final FlowRunnerManager manager;

  public JmxFlowRunnerManager(final FlowRunnerManager manager) {
    this.manager = manager;
  }

  @Override
  public long getLastCleanerThreadCheckTime() {
    return this.manager.getLastCleanerThreadCheckTime();
  }

  @Override
  public boolean isCleanerThreadActive() {
    return this.manager.isCleanerThreadActive();
  }

  @Override
  public String getCleanerThreadState() {
    return this.manager.getCleanerThreadState().toString();
  }

  @Override
  public boolean isExecutorThreadPoolShutdown() {
    return this.manager.isExecutorThreadPoolShutdown();
  }

  @Override
  public int getNumRunningFlows() {
    return this.manager.getNumRunningFlows();
  }

  @Override
  public int getNumQueuedFlows() {
    return this.manager.getNumQueuedFlows();
  }

  @Override
  public String getRunningFlows() {
    return this.manager.getRunningFlowIds();
  }

  @Override
  public String getQueuedFlows() {
    return this.manager.getQueuedFlowIds();
  }

  @Override
  public int getMaxNumRunningFlows() {
    return this.manager.getMaxNumRunningFlows();
  }

  @Override
  public int getMaxQueuedFlows() {
    return this.manager.getTheadPoolQueueSize();
  }

  @Override
  public int getTotalNumExecutedFlows() {
    return this.manager.getTotalNumExecutedFlows();
  }
}