Syndicated Actors for Squeak Smalltalk

I’ve just released SyndicatedActors, a package for Squeak Smalltalk that implements the Syndicated Actor Model.

You can get it from the project page on SqueakSource:

The code depends on the Preserves and BTree-Collections support packages. Preserves is available from its SqueakSource project page, and BTree-Collections is included in the SyndicatedActors project.

To do all these installation steps from within a running Squeak image:

1
2
3
4
5
Installer ss project: 'Preserves';
    install: 'Preserves'.
Installer ss project: 'SyndicatedActors';
    install: 'BTree-Collections';
    install: 'SyndicatedActors'.