Skip to content

Sequential execution

Category: Foundations · Status: stub

One line: Steps run one after another in a fixed order, each finishing before the next starts: a single total order of events, and the baseline every concurrent program is measured against.

Also called: serial execution, sequential programming.

How it connects

flowchart LR
  n_concurrency["Concurrency"]
  n_sequential_execution["Sequential execution"]
  n_concurrency ---|vs| n_sequential_execution
  classDef center stroke-width:3px
  class n_sequential_execution center
  classDef outside stroke-dasharray: 4 3
  class n_concurrency outside

Where to read more