1 23 24 29 42 43 48 49 package com.sun.enterprise.util.pool; 50 51 import java.rmi.RemoteException ; 52 53 56 public interface PoolListener 57 { 58 59 63 public void afterCreate(Object object); 64 65 69 public void beforeDestroy(Object object); 70 71 74 public void beforeWait(Object obj); 75 76 79 public void afterNotify(Object obj); 80 81 84 public void onClose(); 85 86 } | Popular Tags |