コード例 #1
0
 public void Publish(ChunkEvent e)
 {
     lock (monitor)
     {
         currentBucket.Enqueue(e);
     }
 }
コード例 #2
0
ファイル: ChunkEventProvider.cs プロジェクト: shsa/unity
 public void Pool(ChunkEvent e)
 {
     lock (pool)
     {
         pool.Push(e);
     }
 }