Package com.zanox.rabbiteasy.cdi

Source Code of com.zanox.rabbiteasy.cdi.ConsumerContainerProvider

package com.zanox.rabbiteasy.cdi;

import com.rabbitmq.client.ConnectionFactory;
import com.zanox.rabbiteasy.consumer.ConsumerContainer;

import javax.enterprise.inject.Produces;
import javax.inject.Inject;
import javax.inject.Singleton;

/**
* Provides the default consumer container.
*
* @author christian.bick
*/
public class ConsumerContainerProvider {

    @Inject
    ConnectionFactory connectionFactory;

    @Produces @Singleton
    public ConsumerContainer provideConsumerContainer() {
        return new ConsumerContainer(connectionFactory);
    }

}
TOP

Related Classes of com.zanox.rabbiteasy.cdi.ConsumerContainerProvider

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.