Examples of TopicExchange


Examples of org.apache.qpid.server.exchange.TopicExchange

        TopicDeletePolicy policy = new TopicDeletePolicy();
        policy.configure(_config);

        MockAMQQueue queue = createOwnedQueue();

        queue.addBinding(new Binding(null, "bindingKey", queue, new TopicExchange(), null));

        queue.setAutoDelete(false);

        policy.performPolicy(queue);
View Full Code Here

Examples of org.apache.qpid.server.exchange.TopicExchange

        TopicDeletePolicy policy = new TopicDeletePolicy();
        policy.configure(_config);

        final MockAMQQueue queue = createOwnedQueue();

        queue.addBinding(new Binding(null, "bindingKey", queue, new TopicExchange(), null));

        setQueueToAutoDelete(queue);

        policy.performPolicy(queue);
View Full Code Here

Examples of org.apache.qpid.server.exchange.TopicExchange

        TopicDeletePolicy policy = new TopicDeletePolicy();
        policy.configure(_config);

        MockAMQQueue queue = createOwnedQueue();

        queue.addBinding(new Binding(null, "bindingKey", queue, new TopicExchange(), null));

        policy.performPolicy(queue);

        assertFalse("Queue should not be deleted", queue.isDeleted());
        assertTrue("Connection should be closed", _connection.isClosed());
View Full Code Here

Examples of org.apache.qpid.server.exchange.TopicExchange

        assertTrue("Config was not updated to delete Persistent topics",
                   _config.deletePersistent());

        MockAMQQueue queue = createOwnedQueue();

        queue.addBinding(new Binding(null, "bindingKey", queue, new TopicExchange(), null));

        policy.performPolicy(queue);

        assertTrue("Queue should be deleted", queue.isDeleted());
        assertTrue("Connection should be closed", _connection.isClosed());
View Full Code Here

Examples of org.apache.qpid.server.exchange.TopicExchange

        // Explicity say we are not configuring the policy.
        policy.configure(null);

        MockAMQQueue queue = createOwnedQueue();

        queue.addBinding(new Binding(null, "bindingKey", queue, new TopicExchange(), null));

        policy.performPolicy(queue);

        assertFalse("Queue should not be deleted", queue.isDeleted());
        assertTrue("Connection should be closed", _connection.isClosed());
View Full Code Here

Examples of org.springframework.amqp.core.TopicExchange

    return new JsonMessageConverter();
  }
 
  @Bean
  public TopicExchange marketDataExchange() {
    return new TopicExchange(MARKET_DATA_EXCHANGE_NAME);
  }
View Full Code Here

Examples of org.springframework.amqp.core.TopicExchange

    return connectionFactory;
  }

  @Bean
  public TopicExchange logExchange() {
    return new TopicExchange(LOG_EXCHANGE_NAME, false, false);
  }
View Full Code Here

Examples of org.springframework.amqp.core.TopicExchange

        } else if("fanout".equals(this.exchangeType)) {
            return new FanoutExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("headers".equals(this.exchangeType)) {
            return new HeadersExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("topic".equals(this.exchangeType)) {
            return new TopicExchange(this.exchangeName, this.durable, this.autodelete);
        } else {
            return new DirectExchange(this.exchangeName, this.durable, this.autodelete);
        }
    }
View Full Code Here

Examples of org.springframework.amqp.core.TopicExchange

        } else if("fanout".equals(this.exchangeType)) {
            return new FanoutExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("headers".equals(this.exchangeType)) {
            return new HeadersExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("topic".equals(this.exchangeType)) {
            return new TopicExchange(this.exchangeName, this.durable, this.autodelete);
        //We have a routing key but no explicit exchange type, assume topic exchange
        } else if(this.routingKey != null) {
            return new TopicExchange(this.exchangeName, this.durable, this.autodelete);
        } else {
            return new DirectExchange(this.exchangeName, this.durable, this.autodelete);
        }
    }
View Full Code Here

Examples of org.springframework.amqp.core.TopicExchange

        } else if("fanout".equals(this.exchangeType)) {
            return new FanoutExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("headers".equals(this.exchangeType)) {
            return new HeadersExchange(this.exchangeName, this.durable, this.autodelete);
        } else if("topic".equals(this.exchangeType)) {
            return new TopicExchange(this.exchangeName, this.durable, this.autodelete);
        } else {
            return new DirectExchange(this.exchangeName, this.durable, this.autodelete);
        }
    }
View Full Code Here
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.