Methods Summary |
---|
public void | afterCreate(java.lang.Object object)called after an object has been created.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": afterCreate(" + object + ");");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": afterCreate(" + object + ");");
//Bug 4677074 end
|
public void | afterHold()Called when the pool is out of hold.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": pool out of hold......");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": pool out of hold......");
//Bug 4677074 end
|
public void | afterNotify(java.lang.Object object)Called by the thread that has been notified.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": afterNotify(" + object + ");");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": afterNotify(" + object + ");");
//Bug 4677074 end
|
public void | beforeDestroy(java.lang.Object object)called before an object is to be destroyed.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": beforeDestroy(" + object + ");");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": beforeDestroy(" + object + ");");
//Bug 4677074 end
|
public void | beforeHold()Called when the pool is on hold.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": pool on hold......");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": pool on hold......");
//Bug 4677074 end
|
public void | beforeWait(java.lang.Object object)Called by the thread that is about to wait.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": beforeWait(" + object + ");");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": beforeWait(" + object + ");");
//Bug 4677074 end
|
public void | onClose()Called when the pool is closed.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": pool closed......");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": pool closed......");
//Bug 4677074 end
|
public void | onRecycle()Called when the pool is recycled.
if ( com.sun.enterprise.util.logging.Debug.enabled )
//Bug 4677074 System.out.println(this + ": pool recycled......");
//Bug 4677074 begin
_logger.log(Level.FINE,this + ": pool recycled......");
//Bug 4677074 end
|