Created
December 6, 2011 00:29
-
-
Save 7sharp9/1436093 to your computer and use it in GitHub Desktop.
pipelets loop option2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mailbox = MailboxProcessor.Start(fun inbox -> | |
let rec loop routes = async { | |
let! msg = inbox.Receive() | |
match msg with | |
| Payload(data) -> | |
ss.Release() |> ignore | |
let result = compute data routes |> Async.Catch |> Async.RunSynchronously | |
match result with | |
| Choice1Of2 _ -> () | |
| Choice2Of2 exn -> errors exn | |
return! loop routes | |
| Attach(stage) -> return! loop (stage::routes) | |
| Detach(stage) -> return! loop (List.filter (fun x -> x <> stage) routes) | |
} | |
loop []) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
What's the MSDN reference for this implementation?