Package org.springframework.amqp.core

Examples of org.springframework.amqp.core.CustomExchange


        } else if (FANOUT.equals(type)) {
          exchange = new FanoutExchange(name, durable, autoDelete, arguments);
        } else if (HEADERS.equals(type)) {
          exchange = new HeadersExchange(name, durable, autoDelete, arguments);
        } else {
          exchange = new CustomExchange(name, type, durable, autoDelete, arguments);
        }
        currentExchange = exchange;

      } else {
        currentExchange = new DirectExchange(name);
View Full Code Here

TOP

Related Classes of org.springframework.amqp.core.CustomExchange

Copyright © 2018 www.massapicom. 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.