Interface SessionCallback<T>

Type Parameters:
T - the result type
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface SessionCallback<T>
Callback for executing any number of operations on a provided Session.

To be used with the JmsTemplate.execute(SessionCallback) method, often implemented as an anonymous inner class or as a lambda expression.

Since:
1.1
Author:
Mark Pollack
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    doInJms(Session session)
    Execute any number of operations against the supplied JMS Session, possibly returning a result.
  • Method Details

    • doInJms

      @Nullable T doInJms(Session session) throws JMSException
      Execute any number of operations against the supplied JMS Session, possibly returning a result.
      Parameters:
      session - the JMS Session
      Returns:
      a result object from working with the Session, if any (or null if none)
      Throws:
      JMSException - if thrown by JMS API methods