2

I'm currently reading ManualResetEventSlim's Reference.

What does it mean when it says:

A common use of MRES.WaitHandle is to use MRES as a participant in WaitHandle.WaitAll/WaitAny. Note that accessing MRES.WaitHandle will result in the unconditional inflation of the underlying ManualResetEvent.

What is this inflation thing?

Thanks for reading.

4

1 に答える 1

4

スリムな部分は、必要になるまでManualResetEventSlimOS レベルを作成しないことManualResetEventです。(それらは高価です)

インフレとは、実質を作成することを意味しManualResetEventます。

これは、ソースの 275 行目で確認できます。

于 2013-10-25T00:15:25.950 に答える