Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for newSynchronousQueue (0.34 sec)

  1. android/guava/src/com/google/common/collect/Queues.java

      // SynchronousQueue
    
      /** Creates an empty {@code SynchronousQueue} with nonfair access policy. */
      @J2ktIncompatible
      @GwtIncompatible // SynchronousQueue
      public static <E> SynchronousQueue<E> newSynchronousQueue() {
        return new SynchronousQueue<>();
      }
    
      /**
       * Drains the queue as {@link BlockingQueue#drainTo(Collection, int)}, but if the requested {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/Queues.java

      // SynchronousQueue
    
      /** Creates an empty {@code SynchronousQueue} with nonfair access policy. */
      @J2ktIncompatible
      @GwtIncompatible // SynchronousQueue
      public static <E> SynchronousQueue<E> newSynchronousQueue() {
        return new SynchronousQueue<>();
      }
    
      /**
       * Drains the queue as {@link BlockingQueue#drainTo(Collection, int)}, but if the requested {@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/collection/CollectionsUtil.java

         *            {@link SynchronousQueue}の要素型
         * @return {@link SynchronousQueue}の新しいインスタンス
         * @see SynchronousQueue#SynchronousQueue()
         */
        public static <E> SynchronousQueue<E> newSynchronousQueue() {
            return new SynchronousQueue<>();
        }
    
        /**
         * {@link SynchronousQueue}の新しいインスタンスを作成して返します。
         *
         * @param <E>
         *            {@link SynchronousQueue}の要素型
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 53.9K bytes
    - Viewed (0)
Back to top