Package com.cisco.oss.foundation.monitoring.serverconnection

Examples of com.cisco.oss.foundation.monitoring.serverconnection.ServerConnectionImp


        }
    }

    private void updateServerConnections() {
        for (int index = 0; index < ConnectionInfo.INSTANCE.getServerConnections().size(); index++) {
            ServerConnectionImp serverConnection = (ServerConnectionImp) ConnectionInfo.INSTANCE.getServerConnections().get(index);
            if (serverConnection.getTransactionOpen() == TransactionOpen.Open) {
                ConnectionInfo.INSTANCE.serverConnectorActor.tell().updateOpenSince(serverConnection,calculateOpenTransactionTime(serverConnection.getLastTransactionStartTime()));
//                connection.setOpenSince(calculateOpenTransactionTime(connection.getLastTransactionStartTime()));
            }
        }
    }
View Full Code Here


        }
    }

    private void updateServerConnections() {
        for (int index = 0; index < ConnectionInfo.INSTANCE.getServerConnections().size(); index++) {
            ServerConnectionImp serverConnection = (ServerConnectionImp) ConnectionInfo.INSTANCE.getServerConnections().get(index);
            if (serverConnection.getTransactionOpen() == TransactionOpen.Open) {
                ConnectionInfo.INSTANCE.serverConnectorActor.tell().updateOpenSince(serverConnection,calculateOpenTransactionTime(serverConnection.getLastTransactionStartTime()));
//                connection.setOpenSince(calculateOpenTransactionTime(connection.getLastTransactionStartTime()));
            }
        }
    }
View Full Code Here

TOP

Related Classes of com.cisco.oss.foundation.monitoring.serverconnection.ServerConnectionImp

Copyright © 2018 www.massapicom. 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.