Software Engineering KB

Home

❯

02 Programming Languages and Paradigms

❯

04 Concurrency

❯

01 Concept

❯

CSP (Communicating Sequential Processes)

CSP (Communicating Sequential Processes)

Feb 10, 20261 min read

  • concurrency
  • models
  • csp

CSP (Communicating Sequential Processes)

← Back to Concurrency Models

A model where concurrent processes communicate through typed channels. Unlike actors, channels are synchronization points — a send blocks until a receiver is ready (or channels can be buffered). Go’s goroutines and channels are the most prominent CSP implementation.

Key Properties

  • Channels as Synchronization Points
  • Goroutines and core.async

concurrency models csp


Graph View

  • CSP (Communicating Sequential Processes)
  • Key Properties

Backlinks

  • Concurrency Models
  • Channels as Synchronization Points
  • Goroutines and core.async

Created with Quartz v4.5.2 © 2026

  • GitHub