Obviously for an interaction sequence diagram, we need to show some interaction! This interaction comes in the form of messages. Messages are passed from actor to object or object to object and the are functions and methods contained in the classes. Thus, these messages show which method is being called from an object.
“Messages” in classes/objects refer to the methods/functions within that particular class.
When one class calls another, the function or method being called must exist in the class.
Messages can be passed between actors and objects.
There a four specific types of messages, each with their own representation on the interaction sequence diagram. These messages are:
Synchronous: A message sent by one object to another, and the first object waits until the resulting task has been completed.
Asynchronous: A message is sent by one object to another but the first object does not wait until the resulting action has completed.
Creation: Represents a message that causes the creation of an object.
Reply: Represents the explicit return of control from the object to which the message was sent.
The content of these messages are shown on top of the arrows. This content is normally the method call or the response to the message.
Objects can also call methods within themselves. These are reflexive messages and are basically messages from an object that point to themselves.