Ejemplo n.º 1
0
 private void Close(PackFile pack)
 {
     if (!pack.endWindowCache())
     {
         return;
     }
     _openFiles.decrementAndGet();
 }
Ejemplo n.º 2
0
        private void Close(PackFile pack)
        {
            if (!pack.endWindowCache())
            {
                return;
            }
            int c = _openFiles.get();

            _openFiles.compareAndSet(c, c - 1);
        }