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

com.rabbitmq.client.SocketConfigurator Maven / Gradle / Ivy

package com.rabbitmq.client;

import java.io.IOException;
import java.net.Socket;

public interface SocketConfigurator {
    /**
     * Provides a hook to insert custom configuration of the sockets
     * used to connect to an AMQP server before they connect.
     */
    void configure(Socket socket) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy