Message Sequence Chart

Ein Nachrichten-Reihenfolge-Diagramm (MSC, engl. Message Sequence Chart) wird benutzt, um (z. B. zur Unterstützung der Modellierung mit SDL) beispielhafte Nachrichtenfolgen zwischen kommunizierenden Objekten einheitlich darzustellen.

MSC ist ein Standard der ITU-T, dem Telekommunikations-Standardisierungs-Sektor der Internationalen Fernmeldeunion und kennt zwei Darstellungsformen: Textuelles MSC und graphisches MSC.

Bei Verwendung der Unified Modeling Language erfüllt das Sequenzdiagramm die Aufgabe des MSC.

Standards

Beispiel

Ein MSC, das einen Verbindungsaufbau zwischen Client und Server darstellt, kann in MSC/PR wie folgt angegeben werden:

msc ExampleMSC;
  inst Client, Server;
  condition Idle shared all;
    instance Client;
      in ConReq from env;
      out connect to Server;
    endinstance;
    instance Server;
      in connect from Client;
      out conInd to env;
    endinstance;
  condition Connecting shared all;
    instance Client;
      in accepted from Server;
      out conCnf to env;
    endinstance;
    instance Server;
      in conAcc from env;
      out accepted to Client;
    endinstance;
  condition Connected shared all;
endmsc;

Deutlich häufiger als MSC/PR trifft man allerdings das leichter verständliche MSC/GR, die graphische Ausprägung von MSC, an. Obiges Beispielszenario sähe in MSC/GR wie folgt aus:

Siehe auch

Literatur

  • Oliver Alt: Car Multimedia Systeme Modell-basiert testen mit SysML. Vieweg + Teubner Verlag, Wiesbaden 2009, ISBN 978-3-8348-0761-8.
  • Mirko Conrad: Modell-basierter Test eingebetteter Software im Automobil. Deutscher Universitätsverlag, Wiesbaden 2004, ISBN 978-3-8244-2188-6.
  • Hu Hanrahan: Network Convergence. Services – Applications – Transport – and Operations Support, John Wiley & Sons Ltd, Chichester 2007, ISBN 978-0-470-02441-6.
  • Axel Pink, Heinz Koßmann: Software-Entwicklung für Kommunikationsnetze. Springer Verlag, Berlin / Heidelberg 2002, ISBN 3-642-62792-7.

Programme

Frei

Proprietär

Content Disclaimer

Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.

  1. The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
  2. There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
  3. It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
  4. Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
  5. Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.