コード例 #1
0
ファイル: Archive.cs プロジェクト: hajimen/flowerflower
 public void Put(int identifier, Notification n)
 {
     lock (this)
     {
         depot[identifier % saveCount] = n;
         lastIdentifier = identifier;
     }
 }
コード例 #2
0
ファイル: Service.cs プロジェクト: hajimen/flowerflower
 public void Enqueue(Notification n)
 {
     if (!connection.IsThreadAlive) logger.Debug("Apns Connection thread has died!");
     if (thread == null || !thread.IsAlive) logger.Debug("Apns Service thread has died!");
     queue.Enqueue(n);
 }
コード例 #3
0
 public override void Enqueue(Notification n)
 {
     service.Enqueue(n);
 }
コード例 #4
0
 public override void Enqueue(Notification n)
 {
 }
コード例 #5
0
 public abstract void Enqueue(Notification n);