All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.javagimmicks.concurrent.locks.LockStatistics Maven / Gradle / Ivy

The newest version!
package net.sf.javagimmicks.concurrent.locks;

import java.io.IOException;
import java.io.Writer;

/**
 * Provides statistical (and other) information about currently held locks.
 * 
 * @param 
 *           The type of the internally used resource identifiers
 */
public interface LockStatistics
{
   /**
    * Dumps detailed information about the internally held locks into the give
    * {@link Writer}.
    * 
    * @param w
    *           the {@link Writer} to dump into
    */
   void dump(Writer w) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy