1 package jfun.yan.monitoring; 2 3 import java.beans.PropertyDescriptor ; 4 11 public interface GetterMonitor { 12 17 void propertyGetting(Object obj, PropertyDescriptor desc); 18 25 void propertyGot(Object obj, PropertyDescriptor desc, Object result, long duration); 26 33 void propertyGetFailed(Object obj, PropertyDescriptor desc, 34 Throwable err, long duration); 35 } 36 | Popular Tags |