Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getAndSetObject (0.26 sec)

  1. guava/src/com/google/common/util/concurrent/AbstractFuture.java

        Listener gasListeners(AbstractFuture<?> future, Listener update) {
          return (Listener) UNSAFE.getAndSetObject(future, LISTENERS_OFFSET, update);
        }
    
        /** Performs a GAS operation on the {@link #waiters} field. */
        @Override
        Waiter gasWaiters(AbstractFuture<?> future, Waiter update) {
          return (Waiter) UNSAFE.getAndSetObject(future, WAITERS_OFFSET, update);
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
Back to top