0
comment
comment
on 2/19/2012 11:30 PM
This will be the last post on rebuilding the MailboxProcessor using TDF,
here’s a quick discussion of the missing pieces…
First, lets start with the simple ones, these don’t really require much discussion.
DefaultTimeout
1
2
3
4
5
let mutable defaultTimeout = Timeout.Infinite
member x.DefaultTimeout
with get() = defaultTimeout
and set(value) = defaultTimeout <- value
This simply provides a mutable property using Timeout.Infinite as a default setting.
CurrentQueueLength
1
member x.CurrentQu[...]