FileDocCategorySizeDatePackage
InterruptableCollector.javaAPI DocGlassfish v2 API2383Fri May 04 22:34:44 BST 2007com.sun.enterprise.diagnostics.collect

InterruptableCollector

public abstract class InterruptableCollector extends Object implements Collector, Interruptable
Abstract Class which helps check whether collectors are interrupted
author
Jagadish Ramu

Fields Summary
Constructors Summary
Methods Summary
public booleancheckInterrupted()

        boolean interrupted = Thread.currentThread().isInterrupted();
        if (interrupted) {
            cleanUp();
        }
        return interrupted;