Exemplo n.º 1
0
 public void Process(PoolEntry <T, C> entry)
 {
     if (entry.IsExpired(now))
     {
         entry.Close();
     }
 }
Exemplo n.º 2
0
 public void Process(PoolEntry <T, C> entry)
 {
     if (entry.GetUpdated() <= deadline)
     {
         entry.Close();
     }
 }