作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找类似 Semaphore
的东西,但它会在所有插槽都已释放后解决。
像这样:
use semaphore = new SemaphoreSlim(0,100)
anEvent.add(fun _ -> semaphore.Release(1) |> ignore);
async {
do! thingThatCausesAnEventToFire100Times()
//where 100 is the available slots instead of the timeout.
let! thingsHappened = semaphore.WaitAsync(100) |> Async.AwaitTask
thingsHappened |> should be True
}
最佳答案
听起来像是 MailboxProcessor 的工作。这个怎么样:
type SemaphoreCommand =
|Release
|Wait of AsyncReplyChannel<unit>
let semaphore slots =
Agent.Start
<| fun inbox ->
let rec loop c (w:AsyncReplyChannel<unit> list) =
async {
let! command = inbox.Receive()
match command with
|Release -> if (c + 1) = slots then w |> List.iter(fun t -> t.Reply())
else return! loop (c + 1) w
|Wait a -> return! loop c (a::w)
}
loop 0 []
let slotWaiter = semaphore 100
//Events will fill up slots
Release |> slotWaiter.Post
Release |> slotWaiter.Post
async{
//Wait for all slots to be filled
do! slotWaiter.PostAndAsyncReply(fun t -> Wait t)
//All slots filled - continue
}
我不处理您可能在所有槽都填满时尚未注册 AsyncReplyChannel 的情况,或者在所有槽都填满后重置,但这是相当微不足道的,我将把它作为练习留给读者:)
关于.net - 异步等待 n 件事发生,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32201206/
我是一名优秀的程序员,十分优秀!