Examples of RefCountingMonitor


Examples of io.reactivex.netty.servo.RefCountingMonitor

    private final Counter failedFlushes;
    private final Timer flushTimes;
    private final RefCountingMonitor refCounter;

    protected TcpClientListener(String monitorId) {
        refCounter = new RefCountingMonitor(monitorId);
        liveConnections = newLongGauge("liveConnections");
        connectionCount = newCounter("connectionCount");
        pendingConnects = newLongGauge("pendingConnects");
        failedConnects = newCounter("failedConnects");
        connectionTimes = newTimer("connectionTimes");
View Full Code Here

Examples of io.reactivex.netty.servo.RefCountingMonitor

    private final Counter failedFlushes;
    private final Timer flushTimes;
    private final RefCountingMonitor refCounter;

    protected TcpServerListener(String monitorId) {
        refCounter = new RefCountingMonitor(monitorId);
        liveConnections = newLongGauge("liveConnections");
        inflightConnections = newLongGauge("inflightConnections");
        pendingConnectionClose = newLongGauge("pendingConnectionClose");
        failedConnectionClose = newCounter("failedConnectionClose");
        failedConnections = newCounter("failedConnections");
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.