jellyfin/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/IConcurrentMap.cs

12 lines
272 B
C#
Raw Normal View History

2017-04-02 00:36:06 +00:00
using System.Collections.Generic;
namespace SharpCifs.Util.Sharpen
{
internal interface IConcurrentMap<T, TU> : IDictionary<T, TU>
2017-07-08 03:12:21 +00:00
{
TU PutIfAbsent (T key, TU value);
bool Remove (object key, object value);
bool Replace (T key, TU oldValue, TU newValue);
}
2017-04-02 00:36:06 +00:00
}