Package com.zanox.rabbiteasy.cdi

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

package com.zanox.rabbiteasy.cdi;

import com.rabbitmq.client.ConnectionFactory;
import com.zanox.rabbiteasy.SingleConnectionFactory;

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

/**
* Provides the default connection factory.
*
* @author christian.bick
*/
public class ConnectionFactoryProvider {

    @Produces @Singleton
    public ConnectionFactory provideConnectionFactory() {
        return new SingleConnectionFactory();
    }
}
TOP

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

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.