The Untyped Lambda Calculus encoded as actors (F#'s MailboxProcessors)
2 people like thisPosted: 13 years ago by Nick Palladinos
Discussion here http://stackoverflow.com/a/21434034/801189
3 people like thisPosted: 10 years ago by V.B.
Knocked together a bare-minimum TCP wrapper for MailboxProcessor. Not intended for production.
7 people like thisPosted: 10 years ago by Eirik Tsarpalis
Getting started with Akka.NET
7 people like thisPosted: 9 years ago by Tuomas Hietanen
Actors with control actor. No mutable state.
3 people like thisPosted: 11 years ago by Tuomas Hietanen
This time with recursive function through computation expression around continuations...
2 people like thisPosted: 10 years ago by thinkbeforecoding
An example of using an actor (MailboxProcessor) to coordinate the projection of events from an event stream into a persisted projection. This example covers handling simple concurrency conflicts via also persisting and checking the latest event ID with with projection. The update command will take the current projection and apply all new events before persisting it back. The rebuild command will ignore an existing projection and replay all events in the stream.
5 people like thisPosted: 10 years ago by Daniel Bradley