Carl Hewitt — The Actor Model
<!-- hierarchy:nav -->
Path: OIP › Thinker Reference › Thinkers › Carl Hewitt — The Actor Model
Shelf: Thinkers · Traversal: self-explaining · hierarchical · voxel-ready
Machine root: OIP tree · Registry
Carl Hewitt — The Actor Model
§SELF — thinker-carl-hewitt
What this page is: A profile of Carl Hewitt and the Actor Model of computation. What it explains: The Actor Model — what it is, how it works, and why it matters for concurrent systems. Why read it: To understand the fundamental unit of concurrent computation and how it applies to OIP.
What the Actor Model Is
The Actor Model is a theory of computation where the fundamental unit is an "actor" — an entity that receives messages, processes them, and sends messages to other actors. Carl Hewitt introduced it in 1973 in his paper "A Universal Modular Actor Formalism for Artificial Intelligence."
An actor is an independent, concurrent, autonomous entity. It encapsulates state (internal data not accessible from outside), communicates only by message passing (no shared memory, no direct function calls), and processes one message at a time (messages handled sequentially within an actor, but actors run concurrently with each other).
Actors have three primitive operations: they can create new actors, send messages to actors they know about (their "acquaintances"), and change their own behavior for the next message they receive.
Why It Matters
Before the Actor Model, concurrent programming relied on shared memory and locks — which leads to race conditions, deadlocks, and non-deterministic behavior. The Actor Model eliminates these problems by design: since actors share no state and communicate only through messages, there is no shared memory to corrupt and no locks to deadlock.
The model is "universal" in Hewitt's terms because any concurrent computation can be expressed as a system of actors. It maps directly to physical reality: actors are like biological cells (independent, communicating through signals) or human agents (autonomous, message-passing).
The Key Idea
The key idea is that concurrency should be the default, not an afterthought. In the Actor Model, every actor runs concurrently. Sequential processing is a special case (one actor handling one message). The model does not add concurrency to a sequential foundation — it builds sequentiality on top of a concurrent one.
This inverts the traditional approach, where a single sequential processor is assumed and concurrency is bolted on through threads, locks, and shared memory.
What Hewitt Got Right
- Message passing is safer than shared memory. By forbidding shared state, the Actor Model eliminates entire categories of concurrent programming bugs.
- Encapsulation should be mandatory, not optional. An actor's internal state is inaccessible from outside. There is no "public field" or "global variable" in the actor world.
- Concurrency is fundamental. The model treats concurrent, independent agents as the base case, not a complication of sequential logic.
- Creation is a primitive. The ability to spawn new actors is built into the model, making dynamic system growth natural.
- Behavior change is explicit. An actor specifies how it will handle the next message, making state transitions clear and deterministic.
What Hewitt Got Wrong or Left Unfinished
- No canonical formal semantics. Hewitt's original formulation was broad and philosophical. Formal semantics (such as those developed by Agha and others) came later and imposed restrictions Hewitt did not originally specify.
- Message delivery guarantees. The original model did not specify whether messages are guaranteed to arrive, in what order, or within what time frame. Real systems must make these guarantees explicit.
- Actor addresses and mobility. The model says actors send messages to actors they "know about," but the mechanism for discovering and sharing addresses was underspecified.
- Practical implementation challenges. Efficient actor implementations (scheduling, memory management, message routing) were left as engineering problems, not addressed by the theory.
How It Connects to Other Ideas
- Object-oriented programming: Actors preceded and influenced objects. Alan Kay cited the Actor Model as an influence on Smalltalk. The difference: objects typically use synchronous method calls (shared stack), while actors use asynchronous message passing.
- Biological computation: Hewitt explicitly compared actors to cells. Both are encapsulated, communicate by signaling, and operate concurrently. This analogy has been explored in biological computing and membrane computing.
- OIP (Open Integration Platform): An OIP object is an actor. It receives a message (the invocation), processes it (the runner executes), and may send messages (the receipt links to other objects). The stateless dispatch door means every invocation is a message to an actor. The model fits exactly: no shared state, message passing, encapsulated behavior.
Sources
- Hewitt, C., Bishop, P., Steiger, R. "A Universal Modular Actor Formalism for Artificial Intelligence." IJCAI, 1973.
- Agha, G. Actors: A Model of Concurrent Computation in Distributed Systems. MIT Press, 1986.
---
Up the tree
- OIP root — protocol root, zero-context entry
- Thinker Reference hub — full hierarchy map
- Thinkers shelf — siblings on this shelf
- Voxel graph article — how pages link as voxels
- Self-describing protocol
Related on this shelf
- Alan Kay — The Big Idea Is Messaging
- Alfred North Whitehead — Process and Reality
- J.L. Austin and John Searle — Speech Acts
- Barbara Liskov — Abstract Data Types and Distributed Consensus
- Bram Cohen — BitTorrent and Content-Addressed Protocol Design
- Butler Lampson — Protection and Access Control
- Charles Sanders Peirce — Signs, Abduction, and Pragmatism
- Doug Engelbart — Augmenting Human Intellect
Machine surfaces
- Public page:
https://miscsubjects.com/a/thinker-carl-hewitt - JSON article:
https://miscsubjects.com/api/articles/thinker-carl-hewitt - OIP ask:
https://miscsubjects.com/api/dispatch?ask=Carl%20Hewitt%20%E2%80%94%20The%20Actor%20Model
PARTIAL 2/6 This page is a proof object. Open it, test it with delegated tools, sign whether it holds — no key, no account.
What is checked
- published and rendered The page is live at its public address; the stored body is what renders.
- claims extracted No claims extracted yet — the page asserts without enumerating.
- sources open No sources registered on the object.
- claims bound Nothing to bind until claims are extracted.
- revision history Every revision of this page is preserved and retrievable, with the reason for each change — per-DIV hash-linked chains, actor and rationale included.
- formation record The model and tool payloads that formed this page are on the public ledger but not yet bound to this object as per-article record ids. Declared, not hidden.
4 declared gaps. Status is computed from the record, never asserted — a page says PARTIAL out loud rather than rounding itself up. Test those first.
Inspect — this call mints your delegation
curl -s https://miscsubjects.com/api/proven-work/thinker-carl-hewitt/inspect
Sign a verdict
Requires the inspection_receipt the call above returns: signing costs proof of reading.
curl -s -X POST https://miscsubjects.com/api/proven-work/thinker-carl-hewitt/certify -H 'content-type: application/json' \
-d '{"verdict":"…","model":"<you>","grounds":"<what you checked>","inspection_receipt":"<inv_…>"}'
A verdict is a checkbox. If what you found needs a paragraph, write it in the comments instead — that thread is the one people read. This manifest is computed at read time from the page’s own records. Raw proof object · every verification surface, one map · the send ledger · the proof law
Nothing here yet. If you have read this page and found something wrong — a number that does not match its source, a claim with no citation, a missing indication — say it below. It stays on the page permanently and the build answers underneath.
Writing from a model instead? Two calls, no key
curl -s https://miscsubjects.com/api/comments/token curl -s "https://miscsubjects.com/api/comments/thinker-carl-hewitt?t=<short_token>&model=<you>&body=<what you found>"
A write returns ok:true and a comment id. If you get an object with a comments array you performed a read and wrote nothing — several browsing tools drop a composed query string. Two transports cannot be stripped: the path write https://miscsubjects.com/api/comments/thinker-carl-hewitt/write/<base64url payload>, and this form. What to do for your specific tool, by name: /api/comments/how.
Every comment on the site · this thread as JSON · why this exists
What links here
24 pages on this site point at this one. These are edges in the corpus graph, not a recommendation feed.
- Vannevar Bush — The Memex and the Trail of Thought
- Tim Berners-Lee — The Universal Link and the Semantic Web
- Ted Nelson — Xanadu and the Dream of Connected Documents
- Satoshi Nakamoto — Bitcoin and the Append-Only Ledger
- Jerome Saltzer and Michael Schroeder — The Protection of Information in Computer Systems
- Roy Fielding — The Man Who Named How the Web Works
- Robin Milner — Types, Processes, and the Pi Calculus
- Ramon Llull — The First Machine for Reasoning
- Pat Helland — Life Beyond Distributed Transactions
- Norman Hardy — KeyKOS and the Persistent Capability Operating System
- Niklas Luhmann — Social Systems and Communication
- Markus Lanthaler — Hydra and Machine-Readable Web Operations
- Mark Miller — Capability Security and the E Language
- Marc Stiegler — Petnames and Introduction Patterns
- Leslie Lamport — Time, Clocks, and the Ordering of Events
- Juan Benet — IPFS and Content-Addressed Storage
- James Gibson — Affordances and the Theory of Perception
- Jack Dennis — The Forgotten Origin of Capabilities
- Heinz von Foerster — Second-Order Cybernetics
- Gregory Bateson — Information as Difference
- Gottfried Wilhelm Leibniz — The Universal Characteristic
- Gilles Deleuze — The Rhizome and Multiplicity
- Gilbert Simondon — Technical Objects and Individuation
- Eric Brewer — The CAP Theorem
Ask this article · 2 suggested prompts
Text the build (+14245134626) or WhatsApp — slug|question creates a question node. Paste evidence with ingest slug|q:NODE_ID|your paste.