Skip to content

Instantly share code, notes, and snippets.

@csalat
csalat / Actors.md
Created December 29, 2021 13:59 — forked from peltho/Actors.md
Transcript of "Way to do things" from Peter Bourgon

Ways to do things (from Peter Bourgon)

Actors

// Actor model (state machine)
type stateMachine struct {
    state string
    actionc chan func()
}