Example usage for com.google.common.io ByteSource subclass-usage

List of usage examples for com.google.common.io ByteSource subclass-usage

Introduction

In this page you can find the example usage for com.google.common.io ByteSource subclass-usage.

Usage

From source file org.lenskit.util.io.CompressedByteSource.java

/**
 * A Guava byte source that decompresses data from an underlying source.
 */
public class CompressedByteSource extends ByteSource {
    private final ByteSource delegate;
    private final String compName;

From source file io.bazel.rules.closure.http.HttpMessage.java

/**
 * HTTP message.
 *
 * @param <T> subclass type
 */
public abstract class HttpMessage<T extends HttpMessage<?>> extends ByteSource {

From source file com.tinspx.util.io.ChannelSource.java

/**
 * {@link ByteSource} extension that adds {@link #openChannel()}. Only one of
 * {@link #openStream()} or {@link #openChannel()} needs to be implemented.
 * 
 * @author Ian
 */