Sequential vs Parallel System

Published on: September 05, 2025

Tags: #sequential-system #parallel-system


Sequential System

sequenceDiagram
    participant Client
    participant Node 1
    participant Node 2

    Client->>Node 1: Request
    Node 1->>Node 2: Request
    Node 2-->>Node 1: Response
    Node 1-->>Client: Response

Parallel System

sequenceDiagram
    participant Client
    participant Node 1
    participant Node 2

    par
        Client->>Node 1: Request
    and
        Client->>Node 2: Request
    end

    par
        Node 1-->>Client: Response
    and
        Node 2-->>Client: Response
    end

Share this post

Share on X  •  Share on LinkedIn  •  Share via Email