Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for MultiInputStream (0.05 sec)

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

        ConcatenatedByteSource(Iterable<? extends ByteSource> sources) {
          this.sources = checkNotNull(sources);
        }
    
        @Override
        public InputStream openStream() throws IOException {
          return new MultiInputStream(sources.iterator());
        }
    
        @Override
        public boolean isEmpty() throws IOException {
          for (ByteSource source : sources) {
            if (!source.isEmpty()) {
              return false;
            }
    Registered: Fri Dec 26 12:43:10 UTC 2025
    - Last Modified: Mon Sep 08 18:35:13 UTC 2025
    - 25.7K bytes
    - Viewed (0)
Back to top