1 19 20 package org.apache.avalon.cornerstone.blocks.connection; 21 22 import java.io.IOException ; 23 24 28 public interface ConnectionMonitor { 29 30 void acceptingConnectionException(Class clazz, String message, IOException ioe); 31 32 void unexpectedException(Class clazz, String message, Exception e); 33 34 void shutdownSocketWarning(Class clazz, String message, IOException ioe); 35 36 void debugMessage(Class clazz, String message); 37 38 boolean isDebugEnabled(Class clazz); 39 40 } 41 | Popular Tags |