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

12 lines
272 B
C#
Raw Normal View History

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