Uses of Interface
org.springframework.messaging.core.MessagePostProcessor
Packages that use MessagePostProcessor
Package
Description
Core package of the JMS support.
Defines interfaces and implementation classes for messaging templates.
Generic support for Simple Messaging Protocols including protocols such as STOMP.
-
Uses of MessagePostProcessor in org.springframework.jms.core
Methods in org.springframework.jms.core with parameters of type MessagePostProcessorModifier and TypeMethodDescriptionvoidJmsMessageOperations.convertAndSend(String destinationName, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post processor, and send the resulting message to the given destination.voidJmsMessageOperations.convertAndSend(String destinationName, Object payload, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message, apply the given post processor, and send the resulting message to the given destination.voidJmsMessagingTemplate.convertAndSend(Object payload, MessagePostProcessor postProcessor) voidJmsMessagingTemplate.convertAndSend(String destinationName, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) voidJmsMessagingTemplate.convertAndSend(String destinationName, Object payload, MessagePostProcessor postProcessor) <T> TJmsMessageOperations.convertSendAndReceive(String destinationName, Object request, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Convert the given request Object to serialized form, possibly using aMessageConverter, apply the given post processor and send the resultingMessageto the given destination, receive the reply and convert its body of the given target class.<T> TJmsMessageOperations.convertSendAndReceive(String destinationName, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Convert the given request Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post processor and send the resultingMessageto the specified destination, receive the reply and convert its body of the given target class.<T> TJmsMessagingTemplate.convertSendAndReceive(Object request, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TJmsMessagingTemplate.convertSendAndReceive(String destinationName, Object request, Class<T> targetClass, MessagePostProcessor requestPostProcessor) <T> TJmsMessagingTemplate.convertSendAndReceive(String destinationName, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor postProcessor) -
Uses of MessagePostProcessor in org.springframework.messaging.core
Methods in org.springframework.messaging.core with parameters of type MessagePostProcessorModifier and TypeMethodDescription<T> voidAbstractDestinationResolvingMessagingTemplate.convertAndSend(String destinationName, T payload, Map<String, Object> headers, MessagePostProcessor postProcessor) <T> voidAbstractDestinationResolvingMessagingTemplate.convertAndSend(String destinationName, T payload, MessagePostProcessor postProcessor) voidAbstractMessageSendingTemplate.convertAndSend(D destination, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) voidAbstractMessageSendingTemplate.convertAndSend(D destination, Object payload, MessagePostProcessor postProcessor) voidAbstractMessageSendingTemplate.convertAndSend(Object payload, MessagePostProcessor postProcessor) <T> voidDestinationResolvingMessageSendingOperations.convertAndSend(String destinationName, T payload, Map<String, Object> headers, MessagePostProcessor postProcessor) Resolve the given destination name to a destination, convert the payload Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post processor, and send the resulting message to the resolved destination.<T> voidDestinationResolvingMessageSendingOperations.convertAndSend(String destinationName, T payload, MessagePostProcessor postProcessor) Resolve the given destination name to a destination, convert the payload Object to serialized form, possibly using aMessageConverter, wrap it as a message, apply the given post processor, and send the resulting message to the resolved destination.voidMessageSendingOperations.convertAndSend(D destination, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post processor, and send the resulting message to the given destination.voidMessageSendingOperations.convertAndSend(D destination, Object payload, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message, apply the given post processor, and send the resulting message to the given destination.voidMessageSendingOperations.convertAndSend(Object payload, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message, apply the given post processor, and send the resulting message to a default destination.<T> TAbstractDestinationResolvingMessagingTemplate.convertSendAndReceive(String destinationName, Object request, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TAbstractDestinationResolvingMessagingTemplate.convertSendAndReceive(String destinationName, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TAbstractMessagingTemplate.convertSendAndReceive(D destination, Object request, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TAbstractMessagingTemplate.convertSendAndReceive(D destination, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TAbstractMessagingTemplate.convertSendAndReceive(Object request, Class<T> targetClass, MessagePostProcessor postProcessor) <T> TDestinationResolvingMessageRequestReplyOperations.convertSendAndReceive(String destinationName, Object request, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Resolve the given destination name, convert the payload request Object to serialized form, possibly using aMessageConverter, wrap it as a message, apply the given post process, and send the resulting message to the resolved destination, then receive a reply and convert its body to the specified target class.<T> TDestinationResolvingMessageRequestReplyOperations.convertSendAndReceive(String destinationName, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Resolve the given destination name, convert the payload request Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post process, and send the resulting message to the resolved destination, then receive a reply and convert its body to the specified target class.<T> TMessageRequestReplyOperations.convertSendAndReceive(D destination, Object request, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Convert the given request Object to serialized form, possibly using aMessageConverter, apply the given post processor and send the resultingMessageto the given destination, receive the reply and convert its body of the given target class.<T> TMessageRequestReplyOperations.convertSendAndReceive(D destination, Object request, Map<String, Object> headers, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Convert the given request Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers, apply the given post processor and send the resultingMessageto the specified destination, receive the reply and convert its body of the given target class.<T> TMessageRequestReplyOperations.convertSendAndReceive(Object request, Class<T> targetClass, MessagePostProcessor requestPostProcessor) Convert the given request Object to serialized form, possibly using aMessageConverter, apply the given post processor and send the resultingMessageto a default destination, receive the reply and convert its body of the given target class.protected Message<?>AbstractMessageSendingTemplate.doConvert(Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) Convert the given Object to serialized form, possibly using aMessageConverter, wrap it as a message with the given headers and apply the given post processor. -
Uses of MessagePostProcessor in org.springframework.messaging.simp
Methods in org.springframework.messaging.simp with parameters of type MessagePostProcessorModifier and TypeMethodDescriptionvoidSimpMessageSendingOperations.convertAndSendToUser(String user, String destination, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) Send a message to the given user.voidSimpMessageSendingOperations.convertAndSendToUser(String user, String destination, Object payload, MessagePostProcessor postProcessor) Send a message to the given user.voidSimpMessagingTemplate.convertAndSendToUser(String user, String destination, Object payload, Map<String, Object> headers, MessagePostProcessor postProcessor) voidSimpMessagingTemplate.convertAndSendToUser(String user, String destination, Object payload, MessagePostProcessor postProcessor)