User: simone
Date: 00/10/16 16:16:03
Added: src/main/org/jboss/util Executable.java
Log:
Interface for job execution
Revision Changes Path
1.1 jboss/src/main/org/jboss/util/Executable.java
Index: Executable.java
===================================================================
/*
* jBoss, the OpenSource EJB server
*
* Distributable under GPL license.
* See terms of license at gnu.org.
*/
package org.jboss.util;
/**
* Interface for the execution of a task. <p>
*
* @see WorkerQueue
* @author Simone Bordet ([EMAIL PROTECTED])
* @version $Revision: 1.1 $
*/
public interface Executable
{
// Constants -----------------------------------------------------
// Static --------------------------------------------------------
// Public --------------------------------------------------------
/**
* Executes the implemented task.
*/
public void execute() throws Exception;
}