org.apache.tomcat.util.threads.ThreadPoolExecutor.shutdownNow()方法的使用及代码示例

x33g5p2x  于2022-01-30 转载在 其他  
字(6.4k)|赞(0)|评价(0)|浏览(126)

本文整理了Java中org.apache.tomcat.util.threads.ThreadPoolExecutor.shutdownNow()方法的一些代码示例,展示了ThreadPoolExecutor.shutdownNow()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ThreadPoolExecutor.shutdownNow()方法的具体详情如下:
包路径:org.apache.tomcat.util.threads.ThreadPoolExecutor
类名称:ThreadPoolExecutor
方法名:shutdownNow

ThreadPoolExecutor.shutdownNow介绍

暂无

代码示例

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: com.ovea.tajin.servers/tajin-server-jetty9

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: org.apache.tomcat/tomcat-catalina

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if (executor != null) {
    executor.shutdownNow();
  }
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: org.apache.catalina/com.springsource.org.apache.catalina

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: codefollower/Tomcat-Research

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-jetty9

/**
 * Stop the component and implement the requirements
 * of {@link org.apache.catalina.util.LifecycleBase#stopInternal()}.
 *
 * @exception LifecycleException if this component detects a fatal error
 *  that needs to be reported
 */
@Override
protected void stopInternal() throws LifecycleException {
  setState(LifecycleState.STOPPING);
  if ( executor != null ) executor.shutdownNow();
  executor = null;
  taskqueue = null;
}

代码示例来源:origin: com.ovea.tajin.server/tajin-server-tomcat7

public void shutdownExecutor() {
  if ( executor!=null && internalExecutor ) {
    if ( executor instanceof ThreadPoolExecutor ) {
      //this is our internal one, so we need to shut it down
      ThreadPoolExecutor tpe = (ThreadPoolExecutor) executor;
      tpe.shutdownNow();
      TaskQueue queue = (TaskQueue) tpe.getQueue();
      queue.setParent(null);
    }
    executor = null;
  }
}

代码示例来源:origin: org.apache.coyote/com.springsource.org.apache.coyote

public void shutdownExecutor() {
  if ( executor!=null && internalExecutor ) {
    if ( executor instanceof ThreadPoolExecutor ) {
      //this is our internal one, so we need to shut it down
      ThreadPoolExecutor tpe = (ThreadPoolExecutor) executor;
      tpe.shutdownNow();
      TaskQueue queue = (TaskQueue) tpe.getQueue();
      queue.setParent(null);
    }
    executor = null;
  }
}

代码示例来源:origin: org.apache.geronimo.ext.tomcat/catalina

public void shutdownExecutor() {
  if ( executor!=null && internalExecutor ) {
    if ( executor instanceof ThreadPoolExecutor ) {
      //this is our internal one, so we need to shut it down
      ThreadPoolExecutor tpe = (ThreadPoolExecutor) executor;
      tpe.shutdownNow();
      TaskQueue queue = (TaskQueue) tpe.getQueue();
      queue.setParent(null);
    }
    executor = null;
  }
}

代码示例来源:origin: lord-of-code/loc-framework

+ tomcatGracefulShutdownProperties
   .getWaitTime() + " second(s). Proceeding with force shutdown");
 threadPoolExecutor.shutdownNow();
} else {
 log.info("Tomcat thread pool is empty, we stop now");

代码示例来源:origin: codefollower/Tomcat-Research

public void shutdownExecutor() {
  if ( executor!=null && internalExecutor ) {
    if ( executor instanceof ThreadPoolExecutor ) {
      //this is our internal one, so we need to shut it down
      ThreadPoolExecutor tpe = (ThreadPoolExecutor) executor;
      tpe.shutdownNow();
      long timeout = getExecutorTerminationTimeoutMillis();
      if (timeout > 0) {
        try {
          tpe.awaitTermination(timeout, TimeUnit.MILLISECONDS);
        } catch (InterruptedException e) {
          // Ignore
        }
        if (tpe.isTerminating()) {
          getLog().warn(sm.getString("endpoint.warn.executorShutdown", getName()));
        }
      }
      TaskQueue queue = (TaskQueue) tpe.getQueue();
      queue.setParent(null);
    }
    executor = null;
  }
}

代码示例来源:origin: org.ops4j.pax.tipi/org.ops4j.pax.tipi.tomcat-embed-core

public void shutdownExecutor() {
  Executor executor = this.executor;
  if (executor != null && internalExecutor) {
    this.executor = null;
    if (executor instanceof ThreadPoolExecutor) {
      //this is our internal one, so we need to shut it down
      ThreadPoolExecutor tpe = (ThreadPoolExecutor) executor;
      tpe.shutdownNow();
      long timeout = getExecutorTerminationTimeoutMillis();
      if (timeout > 0) {
        try {
          tpe.awaitTermination(timeout, TimeUnit.MILLISECONDS);
        } catch (InterruptedException e) {
          // Ignore
        }
        if (tpe.isTerminating()) {
          getLog().warn(sm.getString("endpoint.warn.executorShutdown", getName()));
        }
      }
      TaskQueue queue = (TaskQueue) tpe.getQueue();
      queue.setParent(null);
    }
  }
}

相关文章