All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.naming.remote.server.RemoteNamingServerLogger Maven / Gradle / Ivy

There is a newer version: 2.0.5.Final
Show newest version
package org.jboss.naming.remote.server;

import java.io.IOException;
import org.jboss.remoting3.Channel;

/**
 * @author John Bailey
 */
public interface RemoteNamingServerLogger {
    void failedToSendHeader(final IOException exception);
    void failedToDetermineClientVersion(final IOException exception);
    void closingChannel(Channel channel, Throwable t);
    void closingChannelOnChannelEnd(Channel channel);

    void unnexpectedError(Throwable t);

    void nullCorrelationId(Throwable t);

    void failedToSendExceptionResponse(IOException ioe);

    void unexpectedParameterType(byte expected, byte actual);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy