Class AbstractMessage

java.lang.Object
kieker.tools.trace.analysis.systemModel.AbstractMessage
Direct Known Subclasses:
SynchronousCallMessage, SynchronousReplyMessage

@Deprecated
public abstract class AbstractMessage
extends java.lang.Object
Deprecated.
1.15 moved to kieker-model
An abstract base for messages which can later be used and combined in a MessageTrace.
Since:
0.95a
Author:
Andre van Hoorn
  • Constructor Summary

    Constructors 
    Constructor Description
    AbstractMessage​(long timestamp, Execution sendingExecution, Execution receivingExecution)
    Deprecated.
    Creates a new instance of this class using the given parameters.
  • Method Summary

    Modifier and Type Method Description
    abstract boolean equals​(java.lang.Object obj)
    Deprecated.
     
    Execution getReceivingExecution()
    Deprecated.
    Delivers the object which received the message.
    Execution getSendingExecution()
    Deprecated.
    Delivers the object which sent the message.
    long getTimestamp()
    Deprecated.
    Delivers the timestamp at which the message was created.
    int hashCode()
    Deprecated.
     
    java.lang.String toString()
    Deprecated.
     

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • AbstractMessage

      public AbstractMessage​(long timestamp, Execution sendingExecution, Execution receivingExecution)
      Deprecated.
      Creates a new instance of this class using the given parameters.
      Parameters:
      timestamp - The timestamp of the message.
      sendingExecution - The Execution object which sent the message.
      receivingExecution - The Execution object which received the message.
  • Method Details

    • getReceivingExecution

      public final Execution getReceivingExecution()
      Deprecated.
      Delivers the object which received the message.
      Returns:
      The receiving object.
    • getSendingExecution

      public final Execution getSendingExecution()
      Deprecated.
      Delivers the object which sent the message.
      Returns:
      The sending object.
    • getTimestamp

      public final long getTimestamp()
      Deprecated.
      Delivers the timestamp at which the message was created.
      Returns:
      The timestamp of the message.
    • toString

      public java.lang.String toString()
      Deprecated.
      Overrides:
      toString in class java.lang.Object
    • equals

      public abstract boolean equals​(java.lang.Object obj)
      Deprecated.
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class java.lang.Object