Does the C# Yield free a lock?

此生再无相见时 提交于 2019-12-02 20:07:11

No the yield return will not cause any locks to be freed / unlocked. The lock statement will expand out to a try / finally block and the iterator will not treat this any differently than an explicit try / finally in the iterator method.

The details are a bit more complicated but the basic rules for when a finally block will run inside an iterator method is

  1. When the iterator is suspended and Dispose is called the finally blocks in scope at the point of the suspend will run
  2. When the iterator is running and the code would otherwise trigger a finally the finally block runs.
  3. When the iterator encounters a yield break statement the finally blocks in scope at the point of the yield break will run

The lock translates to try/finally (normal c#)

In Iterator blocks (aka yield), "finally" becomes part of the IDisposable.Dispose() implementation of the enumerator. This code is also invoked internally when you consume the last of the data.

"foreach" automatically calls Dispose(), so if you consume with "foreach" (or regualar LINQ etc) it will get unlocked.

However, if the caller uses GetEnumerator() directly (very rare) and doesnt read all the data and doesn't call Dispose() then the lock will not be released.

I would have to check to see if or gets a finaliser; it might get released by GC, but I wouldn't bet money on it.

The Database object will be locked until iteration finishes (or the iterator is disposed).

This might lead to excessive periods of locking, and I would recommend against doing it like this.

The lock remains in effect until you get outside of the scope of lock(). Yielding does not do that.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!