コード例 #1
0
ファイル: WorkersManager.java プロジェクト: nikos/informa
 /**
  * Put task in processing queue. During putting the task algorythm analyzes the priority of
  * insertion and evaluates index of new item in queue.
  *
  * @param record record to put in queue.
  */
 @SuppressWarnings("unchecked")
 private void putRecordInQueue(ChannelRecord record) {
   queue.add(record);
 }
コード例 #2
0
ファイル: ALogReader.java プロジェクト: Paxle/Paxle
 public void clear() {
   if (this.fifo != null) {
     fifo.clear();
   }
 }