The Croquet Project is a novel approach on how to do distributed programming and the first implementation of David P. Reed’s thesis NAMING AND SYNCHRONIZATION IN A DECENTRALIZED COMPUTER SYSTEM from 1978. Object state is versioned and you always reference a named version of an object. A named version of an object is immutable. Lots of good stuff in the original thesis.

Croquet’s time-based synchronization capabilities enable real-time, identical interactions between groups of users while dramatically reducing the need for server infrastructures to support virtual world deployment. Croquet’s architecture makes it easy to develop deeply collaborative applications without having to spend a lot of effort and expertise in understanding how replicated applications work.

TeaTime is a scalable real-time multi-user architecture that is the basis for Croquet’s object-object communication and synchronization. It is designed to support multi-user applications that can be scaled to massive numbers of concurrently interacting users in a shared virtual space. The most directly visible part of this architecture is the TObject class which is used to define and construct subclassed Tea objects. All of the interesting objects inside of Croquet are constructed from subclasses of TObject.

A Tea object acts with the property that messages sent to it are redirected to replicated copies of itself on other users’ participating machines in a peer-to-peer network. This messaging protocol supports a coordinated distributed two-phase commit that is used to control the progression of computations at participating user sites. In this way messages may be dynamically redirected to large numbers of users while maintaining the appropriate deadline-based scheduling. Thus, TeaTime is designed to allow for a great deal of adaptability and resilience and works on a heterogeneous set of resources. It is a framework of abstraction that works over a range of implementations and that can be evolved and tuned over time, both within an application and across applications.

Croquet was succeeded by Open Cobalt which was used to create the conferencing platform Teleplace. By now Teleplace is probably one of the largest Smalltalk installations ever.

 

Comments