aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/IO/SharpCifs/Util/Sharpen/IConcurrentMap.cs
blob: dead2424439af9c8f4e49497257ed039210f7e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
	}
}