Class InternalMessage

    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected boolean threadSafe  
      • Fields inherited from class java.util.EventObject

        source
    • Constructor Summary

      Constructors 
      Constructor Description
      InternalMessage​(java.lang.Object source)
      Sole constructor which takes the "source" of this EventObject.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean isThreadSafe()
      Returns true if this message can safely be passed to another Thread.
      • Methods inherited from class org.springframework.context.ApplicationEvent

        getTimestamp
      • Methods inherited from class java.util.EventObject

        getSource, toString
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • threadSafe

        protected boolean threadSafe
    • Constructor Detail

      • InternalMessage

        public InternalMessage​(java.lang.Object source)
        Sole constructor which takes the "source" of this EventObject.
        Parameters:
        source -
        See Also:
        EventObject(Object)
    • Method Detail

      • isThreadSafe

        public boolean isThreadSafe()
        Returns true if this message can safely be passed to another Thread. The default ApplicationEventMulticaster executes in the same Thread.