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.
-
Constructor Details
-
AbstractMessage
Deprecated.Creates a new instance of this class using the given parameters.
-
-
Method Details
-
getReceivingExecution
Deprecated.Delivers the object which received the message.- Returns:
- The receiving object.
-
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 classjava.lang.Object
-
equals
public abstract boolean equals(java.lang.Object obj)Deprecated.- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()Deprecated.- Overrides:
hashCode
in classjava.lang.Object
-