Interface MessageTriggerAction

All Known Implementing Classes:
BarrierMessageHandler
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 MessageTriggerAction
Classes implementing this interface can take some action when a trigger Message is received.
Since:
4.2
  • Method Summary

    Modifier and Type Method Description
    void trigger​(org.springframework.messaging.Message<?> message)
    Take some action based on the message.
  • Method Details

    • trigger

      void trigger​(org.springframework.messaging.Message<?> message)
      Take some action based on the message.
      Parameters:
      message - the message.