view src/org/dancres/blitz/stats/BlockingOpsStat.java @ 35:6f68e94c1fb8 default tip

Add CondensedStats monitoring utility, equivalent to vmstat
author Dominic Cleal <dominic-cleal@cdo2.com>
date Thu, 05 Aug 2010 11:07:25 +0100
parents 3dc0c5604566
children
line wrap: on
line source

package org.dancres.blitz.stats;

/**
   Provides information about the total number of blocking reads and takes
   active within a Blitz instance.
 */
public class BlockingOpsStat implements Stat {
    private int theReadCount;
    private int theTakeCount;
    private long theId;

    public BlockingOpsStat(long anId, int aReadCount, int aTakeCount) {
        theId = anId;
        theReadCount = aReadCount;
        theTakeCount = aTakeCount;
    }

    public long getId() {
        return theId;
    }

    public int getReaders() {
        return theReadCount;
    }

    public int getTakers() {
        return theTakeCount;
    }

    public String toString() {
        return "Blocking reads: " + theReadCount + ", takes: " + theTakeCount;
    }
}