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 ...

learn more… | top users | synonyms

2
votes
1answer
55 views

F# strange agent re-initialisation behaviour

I have an F# 3.0 agent wrapped in a class: type AgentWrapper() = let myAgent = Agent.Start(fun inbox -> let rec loop (state: int) = async { ...
1
vote
1answer
105 views

MailboxProcessor data serialization?

Compared to NServiceBus, MSMQ, etc. message based architectures... Is there any way to "restore backup" state of F# mailbox processor? Or best practices to extend MailboxProcessor to enable ...
2
votes
2answers
236 views

F# MailboxProcessor - multiple waiting reader continuations for mailbox

Im playing around with writing something like a really simple asynchronous testing framework. But I think I'm hitting some kind of limitation or bug. Sorry but I was not able to reproduce this on a ...
3
votes
1answer
161 views

Lazy.. but eager data loader in F#

Does anyone know of 'prior art' regarding the following subject : I have data that take some decent time to load. they are historical level for various stocks. I would like to preload them somehow, ...
4
votes
1answer
188 views

Unifying Task<T> and F# MailboxProcessor exception handling

When using Task<T>, an exception during the execution of the task is thrown during Task.Wait(); when using F#'s MailBoxProcessor, the exception gets swallowed and needs to be explicitly dealt ...
4
votes
2answers
200 views

MailboxProcessor and exceptions

I wonder, why MailboxProcessor's default strategy of handling exceptions is just silently ignore them. For example: let counter = MailboxProcessor.Start(fun inbox -> let rec loop() = ...
2
votes
2answers
142 views

Why is my MailboxProcessor hanging?

I can't work out why the following code is hanging at the call to GetTotal. I don't seem to be able to debug inside the MailboxProcessor, so it's hard to see what's going on. module Aggregator open ...
4
votes
1answer
199 views

long running agents in f#

I use agents in different ways, one of which consists of 100 agents monitoring website changes, and reporting back to a supervisor which I can call to spawns new monitor off, or listen to the merged ...
1
vote
1answer
145 views

cost of Async.Start

In a mailboxprocessor loop, I read from a blocking collection items previously stored in such collection. Since I use the same loop for writing to such collection, I need launch it as a thread. async ...
0
votes
2answers
102 views

order of arrival of message on a mailboxprocessor

Is there /How can I get guarantee on the order of arrival for the messages sent to a mailboxprocessor That is, on a thread if I do agent.post(msg1) agent.post(msg2) How can I be sure that, in the ...
0
votes
1answer
300 views

Async and CancellationTokens/CancellationTokenSource memory-issue

I'm still on my memory-leak hunt and I noticed the following: I have lots of live-instances of System.Threading.CancellationCallbackInfo-Objects coming from F#'s default-CancellationTokenSource ...
1
vote
1answer
138 views

Proper way how to prepare data in async cancellable workflow with responsive UI

This question is based on Async.TryCancelled doesn't work with Async.RunSynchronously that looks complex, so I will cut a simple part that I try to solve. Suppose I have this functions: let ...
2
votes
1answer
189 views

Async.TryCancelled doesn't work with Async.RunSynchronously

I try to create an agent that updates UI based on user interaction. If user clicks on a button, the GUI should be refreshed. The preparation of model takes a long time, so it is desirable that if user ...
4
votes
1answer
183 views

MailboxProcessor.PostAndReply design choice

Looking at: member this.PostAndReply : (AsyncReplyChannel<'Reply> -> 'Msg) * ?int -> 'Reply I can't figure out why the signature looks so counter-intuitive to me. What we want to do is ...
25
votes
2answers
549 views

memory leaks in Microsoft.FSharp.Control.Mailbox?

I'm hunting for some memory-leaks in a long runing service (using F#) right now. The only "strange" thing I've seen so far is the following: I use a MailboxProcessor in a subsystem with an ...
0
votes
1answer
225 views

Use Post or PostAndAsyncReply with F#'s MailboxProcessor?

I've seen different snippets demonstrating a Put message that returns unit with F#'s MailboxProcessor. In some, only the Post method is used while others use PostAndAsyncReply, with the reply channel ...
0
votes
4answers
208 views

Compiled console command-line program doesn't wait for all the threads finishing

Some of the threads will be terminated before finished if the code is compiled to a console program or run as fsi --use:Program.fs --exec --quiet. Any way to wait for all the threads ending? This ...
3
votes
1answer
375 views

F# MailboxProcessor questions

I've created a console program using the code from http://fssnip.net/3K. And I found that I'd to add "System.Console.ReadLine() |> ignore" at the end to wait for the finish of threads. Is it ...
-1
votes
1answer
60 views

Create MailBox in the aplication

Create our own mailbox in the iphone application with the same functionality as of other mailbox. any idea how we achieve this target? Thanks in advance
1
vote
1answer
162 views

Why this F# code does not generate expected output when used with MailboxProcessor?

I was going through one of Don Syme's blog posts Async and Parallel Design Patterns in F#: Agents. However, the following seemingly extremely simple code did not generate output as expected. type ...
4
votes
3answers
348 views

How to use TryScan in F# properly

I was trying to find an example about how to use TryScan, but haven't found any, could you help me? What I would like to do (quite simplified example): I have a MailboxProcessor that accepts two ...
8
votes
1answer
356 views

Passing messages between remote MailboxProcessors?

I'm using MailboxProcessor classes in order to keep separate agents that do their own thing. Normally agents can communicate with one another in the same process, but I want agents to talk to one ...