< prev index next >

src/java.management/share/classes/com/sun/jmx/remote/internal/ServerCommunicatorAdmin.java

Print this page

        

*** 55,66 **** * Tells that a new request message is received. * A caller of this method should always call the method * <code>rspOutgoing</code> to inform that a response is sent out * for the received request. * @return the value of the termination flag: ! * <ul><code>true</code> if the connection is already being terminated, ! * <br><code>false</code> otherwise.</ul> */ public boolean reqIncoming() { if (logger.traceOn()) { logger.trace("reqIncoming", "Receive a new request."); } --- 55,66 ---- * Tells that a new request message is received. * A caller of this method should always call the method * <code>rspOutgoing</code> to inform that a response is sent out * for the received request. * @return the value of the termination flag: ! * true if the connection is already being terminated, ! * false otherwise. */ public boolean reqIncoming() { if (logger.traceOn()) { logger.trace("reqIncoming", "Receive a new request."); }
*** 78,89 **** } /** * Tells that a response is sent out for a received request. * @return the value of the termination flag: ! * <ul><code>true</code> if the connection is already being terminated, ! * <br><code>false</code> otherwise.</ul> */ public boolean rspOutgoing() { if (logger.traceOn()) { logger.trace("reqIncoming", "Finish a request."); } --- 78,89 ---- } /** * Tells that a response is sent out for a received request. * @return the value of the termination flag: ! * true if the connection is already being terminated, ! * false otherwise. */ public boolean rspOutgoing() { if (logger.traceOn()) { logger.trace("reqIncoming", "Finish a request."); }
< prev index next >