Java Code Examples for com.alibaba.dubbo.common.utils.ExecutorUtil#gracefulShutdown()
The following examples show how to use
com.alibaba.dubbo.common.utils.ExecutorUtil#gracefulShutdown() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: DubboRegistry.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
@Override public void destroy() { super.destroy(); try { // Cancel the reconnection timer if (!reconnectFuture.isCancelled()) { reconnectFuture.cancel(true); } } catch (Throwable t) { logger.warn("Failed to cancel reconnect timer", t); } registryInvoker.destroy(); ExecutorUtil.gracefulShutdown(reconnectTimer, reconnectPeriod); }
Example 2
Source File: FailbackRegistry.java From dubbo-2.6.5 with Apache License 2.0 | 5 votes |
@Override public void destroy() { super.destroy(); try { retryFuture.cancel(true); } catch (Throwable t) { logger.warn(t.getMessage(), t); } ExecutorUtil.gracefulShutdown(retryExecutor, retryPeriod); }
Example 3
Source File: AbstractClient.java From dubbo-2.6.5 with Apache License 2.0 | 4 votes |
@Override public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor, timeout); close(); }
Example 4
Source File: AbstractServer.java From dubbo-2.6.5 with Apache License 2.0 | 4 votes |
@Override public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor, timeout); close(); }
Example 5
Source File: AbstractClient.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 6
Source File: AbstractServer.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 7
Source File: AbstractClient.java From dubbox-hystrix with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 8
Source File: AbstractServer.java From dubbox-hystrix with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 9
Source File: AbstractClient.java From dubbo3 with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor, timeout); close(); }
Example 10
Source File: AbstractServer.java From dubbo3 with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 11
Source File: AbstractClient.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 12
Source File: AbstractServer.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 13
Source File: AbstractClient.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }
Example 14
Source File: AbstractServer.java From dubbox with Apache License 2.0 | 4 votes |
public void close(int timeout) { ExecutorUtil.gracefulShutdown(executor ,timeout); close(); }