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