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

12 lines
293 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-06-21 06:46:57 +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
}