
com.alipay.remoting.DefaultConnectionMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bolt Show documentation
Show all versions of bolt Show documentation
a light weight, easy to use and high performance remoting framework based on netty.
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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 com.alipay.remoting;
import java.util.Map;
import java.util.concurrent.ScheduledThreadPoolExecutor;
import java.util.concurrent.ThreadPoolExecutor;
import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import com.alipay.remoting.log.BoltLoggerFactory;
import com.alipay.remoting.util.RunStateRecordedFutureTask;
/**
* A default connection monitor that handle connections with strategies
*
* @author tsui
* @version $Id: DefaultConnectionMonitor.java, v 0.1 2017-02-21 12:09 tsui Exp $
*/
public class DefaultConnectionMonitor {
private static final Logger logger = BoltLoggerFactory.getLogger("CommonDefault");
/** Connection pools to monitor */
private DefaultConnectionManager connectionManager;
/** Monitor strategy */
private ConnectionMonitorStrategy strategy;
private ScheduledThreadPoolExecutor executor;
public DefaultConnectionMonitor(ConnectionMonitorStrategy strategy,
DefaultConnectionManager connectionManager) {
this.strategy = strategy;
this.connectionManager = connectionManager;
}
/**
* Start schedule task
*
*/
public void start() {
/** initial delay to execute schedule task, unit: ms */
long initialDelay = SystemProperties.conn_monitor_initial_delay();
/** period of schedule task, unit: ms*/
long period = SystemProperties.conn_monitor_period();
this.executor = new ScheduledThreadPoolExecutor(1, new NamedThreadFactory(
"ConnectionMonitorThread", true), new ThreadPoolExecutor.AbortPolicy());
MonitorTask monitorTask = new MonitorTask();
this.executor.scheduleAtFixedRate(monitorTask, initialDelay, period, TimeUnit.MILLISECONDS);
}
/**
* cancel task and shutdown executor
*
* @throws Exception
*/
public void destroy() {
executor.purge();
executor.shutdown();
}
/**
* Monitor Task
*
* @author tsui
* @version $Id: DefaultConnectionMonitor.java, v 0.1 2017-02-21 12:09 tsui Exp $
*/
private class MonitorTask implements Runnable {
/**
* @see java.lang.Runnable#run()
*/
@Override
public void run() {
try {
if (strategy != null) {
Map> connPools = connectionManager
.getConnPools();
strategy.monitor(connPools);
}
} catch (Exception e) {
logger.warn("MonitorTask error", e);
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy