com.rabbitmq.client.impl.FrameHandlerFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of amqp-client Show documentation
Show all versions of amqp-client Show documentation
The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.
package com.rabbitmq.client.impl;
import com.rabbitmq.client.Address;
import java.io.IOException;
/**
*
*/
public interface FrameHandlerFactory {
FrameHandler create(Address addr, String connectionName) throws IOException;
}