List of usage examples for org.springframework.util ErrorHandler interface-usage
From source file uk.co.jassoft.jms.listener.JmsErrorHandler.java
/** * * @author Jonny */ public class JmsErrorHandler implements org.springframework.util.ErrorHandler { private static final Logger LOG = LoggerFactory.getLogger(JmsErrorHandler.class);
From source file com.bbytes.zorba.handler.ZorbaJobEventQueueErrorHandler.java
/**
* Logs all the job event queue related error
*
* @author Thanneer
*
* @version
From source file com.bbytes.zorba.messaging.rabbitmq.listener.ZorbaRequestErrorHandler.java
/**
*
*
* @author Thanneer
*
* @version
From source file org.dd4t.core.caching.jms.impl.JMSErrorHandler.java
/** * Spring JMS error handler, alternative to the JMSExceptionListener which isn't always easy to hook up. * * @author rogier.oudshoorn */ public class JMSErrorHandler implements ErrorHandler {
From source file org.cloudbyexample.dc.service.si.handler.NotificationMessageHandler.java
/**
* Agent message handler.
*
* @author David Winterfeldt
*/
@Component
From source file com.ushahidi.swiftriver.core.dropqueue.MetadataResponseHandler.java
/**
* Handler for incoming drops from metadata extractors.
*
* Update the in memory drops map with the response from the metadata
* extractors.
*
From source file com.ushahidi.swiftriver.core.rules.RulesUpdateQueueConsumer.java
/**
* This class listens for rule(add/delete/update) messages sent on the
* RULES_UPDATE_QUEUE and propagates the updates to the {@link RulesRegistry}
* object
*
* @author ekala
From source file de.taimos.dvalin.interconnect.core.spring.DaemonMessageListener.java
/** * Listen to JMS messages for this daemon. */ @ProdComponent("messageListener") public final class DaemonMessageListener implements MessageListener, ErrorHandler {
From source file com.ushahidi.swiftriver.core.rules.DropFilterQueueConsumer.java
/**
* This class is an asynchronous consumer for consuming messages
* from the DROP_FILTER_QUEUE queue. When a message is received, it is
* marshalled into a {@link RawDrop} object before being passed to the
* {@link RulesExecutor} object for application of the rules
*
From source file com.ushahidi.swiftriver.core.dropqueue.DropHandler.java
/**
* Handler for incoming drops on the Drop Queue
*
* Assigns incoming drops a correlation ID and places them in an in memory up
* before publishing them for meta-data extraction.
*