protected RedisMemDb(RedisPartitionedList <T> items) { if (items != null) { items.Sort(); } m_Items = items ?? new RedisPartitionedList <T>(8); }
public virtual void Sort() { ValidateNotDisposed(); lock (m_SyncRoot) { m_Items.Sort(); } }