| org.jboss.ejb.InstancePoolFeeder
InstancePoolFeeder | public interface InstancePoolFeeder extends XmlLoadable(Code) | | Interface for bean instances Pool Feeder
author: Vincent Harcq version: $Revision: 57209 $ |
Method Summary | |
boolean | isStarted() Tells if the pool feeder is already started. | void | setInstancePool(InstancePool ip) Sets the instance pool inside the pool feeder. | void | start() Start the pool feeder. | void | stop() Stop the pool feeder. |
isStarted | boolean isStarted()(Code) | | Tells if the pool feeder is already started.
The reason is that we start the PF at first get() on the pool and we
want to give a warning to the user when the pool is empty.
true if started |
setInstancePool | void setInstancePool(InstancePool ip)(Code) | | Sets the instance pool inside the pool feeder.
Parameters: ip - the instance pool |
start | void start()(Code) | | Start the pool feeder.
|
stop | void stop()(Code) | | Stop the pool feeder.
|
|
|