Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ByteSink (0.16 sec)

  1. android/guava/src/com/google/common/io/ByteSource.java

        }
      }
    
      /**
       * Copies the contents of this byte source to the given {@code ByteSink}.
       *
       * @return the number of bytes copied
       * @throws IOException if an I/O error occurs while reading from this source or writing to {@code
       *     sink}
       */
      @CanIgnoreReturnValue
      public long copyTo(ByteSink sink) throws IOException {
        checkNotNull(sink);
    
        Closer closer = Closer.create();
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed May 17 14:35:11 GMT 2023
    - 26.2K bytes
    - Viewed (0)
Back to top