Comment on Thinking in Actors – Challenging your software modelling to be simplerparentComments−debugnik1yThese days, for F# I'd use a task builder loop with System.Threading.Channels and TaskCompletionSource, rather than the MailboxProcessor.Same thing, really; you could recreate the MailboxProcessor API with those in just a few lines.
Comments
These days, for F# I'd use a task builder loop with System.Threading.Channels and TaskCompletionSource, rather than the MailboxProcessor.
Same thing, really; you could recreate the MailboxProcessor API with those in just a few lines.