Enquire Now

Tags: mailboxprocessor

F#'s MailboxProcessor class is essentially a dedicated message queue running on its own thread. Any thread can send the MailboxProcessor a message asynchronously or synchronously, allowing threads to communicate between one another through message passing. This style of message-passing concurrency is inspired by the Erlang programming language.

0 Questions