change its foreach
parent
54b4523da8
commit
6e60917522
|
@ -329,29 +329,13 @@ namespace OpenSim.Framework
|
||||||
|
|
||||||
public void ForEach(Action<TValue> action)
|
public void ForEach(Action<TValue> action)
|
||||||
{
|
{
|
||||||
bool gotLock = false;
|
TValue[] values = GetArray();
|
||||||
|
if(values == null || values.Length == 0)
|
||||||
|
return;
|
||||||
|
|
||||||
try
|
foreach (TValue value in values)
|
||||||
{
|
|
||||||
// Avoid an asynchronous Thread.Abort() from possibly never existing an acquired lock by placing
|
|
||||||
// the acquision inside the main try. The inner finally block is needed because thread aborts cannot
|
|
||||||
// interrupt code in these blocks (hence gotLock is guaranteed to be set correctly).
|
|
||||||
try {}
|
|
||||||
finally
|
|
||||||
{
|
|
||||||
rwLock.EnterReadLock();
|
|
||||||
gotLock = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
foreach (TValue value in Dictionary1.Values)
|
|
||||||
action(value);
|
action(value);
|
||||||
}
|
}
|
||||||
finally
|
|
||||||
{
|
|
||||||
if (gotLock)
|
|
||||||
rwLock.ExitReadLock();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void ForEach(Action<KeyValuePair<TKey1, TValue>> action)
|
public void ForEach(Action<KeyValuePair<TKey1, TValue>> action)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue