Work.java |
/* * JBoss, the OpenSource EJB server * * Distributable under LGPL license. See terms of license at gnu.org. */ package javax.resource.spi.work; /** * Work submitted to a work manager */ public interface Work extends Runnable { /** * Invoked by the work manager as a hint to stop processing */ void release(); }
Work.java |