mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-29 20:08:27 +01:00
merge common implementations and server implementations
This commit is contained in:
@@ -0,0 +1,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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user