spring-framework / org.springframework.jms.core / MessageCreator

MessageCreator

@FunctionalInterface interface MessageCreator

Creates a JMS message given a Session.

The Session typically is provided by an instance of the JmsTemplate class.

Implementations do not need to concern themselves with checked JMSExceptions (from the 'javax.jms' package) that may be thrown from operations they attempt. The JmsTemplate will catch and handle these JMSExceptions appropriately.

Author
Mark Pollack

Since
1.1

Functions

createMessage

abstract fun createMessage(session: Session): Message

Create a Message to be sent.