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

com.rabbitmq.client.impl.nio.NioQueueFactory Maven / Gradle / Ivy

Go to download

The RabbitMQ Java client library allows Java applications to interface with RabbitMQ.

There is a newer version: 5.22.0
Show newest version
package com.rabbitmq.client.impl.nio;

/**
 * Contract to create {@link NioQueue}.
 *
 * @see NioQueue
 * @since 4.9.0
 */
public interface NioQueueFactory {

    /**
     * Create a {@link NioQueue} instance
     *
     * @param nioContext
     * @return
     */
    NioQueue create(NioContext nioContext);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy