// Returns a thread-safe wrapper for a LRUMap. // public static LRUMap Synchronized(LRUMap table) { if (table == null) { throw new ArgumentNullException("table"); } return(new SyncLRUMap(table)); }
internal SyncLRUMap(LRUMap table) { _table = table; }
// Returns a thread-safe wrapper for a LRUMap. // public static LRUMap Synchronized(LRUMap table) { if (table == null) { throw new ArgumentNullException("table"); } return new SyncLRUMap(table); }