Spring Integration

Uses of Class
org.springframework.integration.MessagingException

Packages that use MessagingException
org.springframework.integration   
org.springframework.integration.core   
org.springframework.integration.dispatcher   
org.springframework.integration.file   
org.springframework.integration.mapping   
org.springframework.integration.support.channel   
org.springframework.integration.support.converter   
org.springframework.integration.transformer   
 

Uses of MessagingException in org.springframework.integration
 

Subclasses of MessagingException in org.springframework.integration
 class MessageDeliveryException
          Exception that indicates an error during message delivery.
 class MessageHandlingException
          Exception that indicates an error during message handling.
 class MessageRejectedException
          Exception that indicates a message has been rejected by a selector.
 class MessageTimeoutException
           
 

Uses of MessagingException in org.springframework.integration.core
 

Methods in org.springframework.integration.core that throw MessagingException
<T> void
MessagingOperations.convertAndSend(MessageChannel channel, T message)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingOperations.convertAndSend(MessageChannel channel, T message, MessagePostProcessor postProcessor)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingOperations.convertAndSend(String channelName, T message)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingOperations.convertAndSend(String channelName, T message, MessagePostProcessor postProcessor)
          Send the given object to the specified channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingOperations.convertAndSend(T message)
          Send the given object to the default channel, converting the object to a message with a configured MessageConverter.
<T> void
MessagingOperations.convertAndSend(T message, MessagePostProcessor postProcessor)
          Send the given object to the default channel, converting the object to a message with a configured MessageConverter.
 void MessageHandler.handleMessage(Message<?> message)
          Handles the message if possible.
<P> Message<P>
MessagingOperations.receive()
          Receive a message synchronously from the default channel, but only wait up to a specified time for delivery.
<P> Message<P>
MessagingOperations.receive(PollableChannel channel)
          Receive a message synchronously from the specified channel, but only wait up to a specified time for delivery.
<P> Message<P>
MessagingOperations.receive(String channelName)
          Receive a message synchronously from the specified channel, but only wait up to a specified time for delivery.
 Object MessagingOperations.receiveAndConvert()
          Receive a message synchronously from the default channel, but only wait up to a specified time for delivery.
 Object MessagingTemplate.receiveAndConvert()
           
 Object MessagingOperations.receiveAndConvert(PollableChannel channel)
          Receive a message synchronously from the specified channel, but only wait up to a specified time for delivery.
 Object MessagingTemplate.receiveAndConvert(PollableChannel channel)
           
 Object MessagingOperations.receiveAndConvert(String channelName)
          Receive a message synchronously from the specified channel, but only wait up to a specified time for delivery.
 Object MessagingTemplate.receiveAndConvert(String channelName)
           
<P> void
MessagingOperations.send(Message<P> message)
          Send a message to the default channel.
<P> void
MessagingOperations.send(MessageChannel channel, Message<P> message)
          Send a message to the specified channel.
<P> void
MessagingOperations.send(String channelName, Message<P> message)
          Send a message to the specified channel.
 

Uses of MessagingException in org.springframework.integration.dispatcher
 

Subclasses of MessagingException in org.springframework.integration.dispatcher
 class AggregateMessageDeliveryException
          An Exception that encapsulates an aggregated group of Exceptions for use by dispatchers that may try multiple handler invocations within a single dispatch operation.
 

Uses of MessagingException in org.springframework.integration.file
 

Methods in org.springframework.integration.file that throw MessagingException
 Message<File> FileReadingMessageSource.receive()
           
 

Uses of MessagingException in org.springframework.integration.mapping
 

Subclasses of MessagingException in org.springframework.integration.mapping
 class MessageMappingException
          Exception that indicates an error during message mapping.
 

Uses of MessagingException in org.springframework.integration.support.channel
 

Subclasses of MessagingException in org.springframework.integration.support.channel
 class ChannelResolutionException
          Thrown by a ChannelResolver when it cannot resolve a channel name.
 

Uses of MessagingException in org.springframework.integration.support.converter
 

Subclasses of MessagingException in org.springframework.integration.support.converter
 class MessageConversionException
           
 

Uses of MessagingException in org.springframework.integration.transformer
 

Subclasses of MessagingException in org.springframework.integration.transformer
 class MessageTransformationException
          Base Exception type for Message transformation errors.
 


Spring Integration

Copyright © 2010. All Rights Reserved.