Package org.cloudfoundry.picalc.messaging

Examples of org.cloudfoundry.picalc.messaging.WorkerHandler


  @Bean
  public SimpleMessageListenerContainer workerListenerContainer() {
    SimpleMessageListenerContainer container = new SimpleMessageListenerContainer();
    container.setConnectionFactory(connectionFactory());
    container.setQueueNames(QueueNames.WORK_QUEUE_NAME);
    MessageListenerAdapter messageListenerAdapter = new MessageListenerAdapter(new WorkerHandler());
    messageListenerAdapter.setMessageConverter(jsonMessageConverter());
    container.setMessageListener(messageListenerAdapter)
    container.setConcurrentConsumers(1);
    return container;
  }
View Full Code Here

TOP

Related Classes of org.cloudfoundry.picalc.messaging.WorkerHandler

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.