mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-19 20:09:03 -07:00
12 lines
272 B
C#
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);
|
|
}
|
|
}
|