Files
jellyfin/Emby.Common.Implementations/IO/SharpCifs/Util/Sharpen/IConcurrentMap.cs
Luke Pulverenti 71eb9f143f update sharpcifs
2017-07-08 03:25:24 -04:00

12 lines
272 B
C#

using System.Collections.Generic;
namespace SharpCifs.Util.Sharpen
{
internal interface IConcurrentMap<T, TU> : IDictionary<T, TU>
{
TU PutIfAbsent (T key, TU value);
bool Remove (object key, object value);
bool Replace (T key, TU oldValue, TU newValue);
}
}