Package org.jdesktop.wonderland.modules.appbase.client.utils.stats

Examples of org.jdesktop.wonderland.modules.appbase.client.utils.stats.StatisticsReporter


    public SlaveClientSocket(BigInteger clientId, Socket s, ClientSocketListener listener) {
        super(clientId, s, listener);
        master = false;

        if (ENABLE_STATS) {
            statReporter = new StatisticsReporter(30, /* secs */
                    new ReadStatistics(this),
                    new ReadStatistics(this),
                    new ReadStatistics(this));
            statReporter.start();
        }
View Full Code Here


    public MasterClientSocket(BigInteger masterClientID, Socket s, ClientSocketListener listener) {
        super(masterClientID, s, listener);
        master = true;

        if (ENABLE_STATS) {
            statReporter = new StatisticsReporter(10, /* secs */
                    new WriteStatistics(this),
                    new WriteStatistics(this),
                    new WriteStatistics(this));
            statReporter.start();
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.appbase.client.utils.stats.StatisticsReporter

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.