Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for putUninterruptibly (0.17 sec)

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

       *     being added to the given queue
       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      public static <E> void putUninterruptibly(BlockingQueue<E> queue, E element) {
        boolean interrupted = false;
        try {
          while (true) {
            try {
              queue.put(element);
              return;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/util/concurrent/Uninterruptibles.java

       *     being added to the given queue
       */
      @J2ktIncompatible
      @GwtIncompatible // concurrency
      public static <E> void putUninterruptibly(BlockingQueue<E> queue, E element) {
        boolean interrupted = false;
        try {
          while (true) {
            try {
              queue.put(element);
              return;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:51:36 UTC 2024
    - 20.1K bytes
    - Viewed (0)
Back to top