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 com.clank.launcher.persistence.ScramblingSourceFilter.java

class ScramblingSourceFilter extends ByteSource {

    private final ByteSource delegate;
    private final String key;

    public ScramblingSourceFilter(ByteSource delegate, String key) {

From source file com.skcraft.launcher.persistence.ScramblingSourceFilter.java

class ScramblingSourceFilter extends ByteSource {

    private final ByteSource delegate;
    private final String key;

    public ScramblingSourceFilter(ByteSource delegate, String key) {

From source file org.opendaylight.yangtools.yang2sources.plugin.YangSourceFromDependency.java

abstract class YangSourceFromDependency extends ByteSource {

    /**
     * Return a description for this dependency, to be used for error output when
     * working with the dependency.
     */

From source file net.minecraftforge.fml.common.asm.transformers.deobf.LZMAInputSupplier.java

public class LZMAInputSupplier extends ByteSource {
    private InputStream compressedData;

    public LZMAInputSupplier(InputStream compressedData) {
        this.compressedData = compressedData;
    }

From source file com.epam.reportportal.message.TypeAwareByteSource.java

/**
 * {@link ByteSource} which knows about content mime type
 *
 * @author Andrei Varabyeu
 */
public class TypeAwareByteSource extends ByteSource {

From source file com.facebook.presto.orc.stream.OrcByteSource.java

public class OrcByteSource extends ByteSource {
    private final OrcInputStream inputStream;
    private final int compressedBlockOffset;
    private final int decompressedOffset;

    public OrcByteSource(OrcInputStream inputStream, int compressedBlockOffset, int decompressedOffset) {

From source file com.android.builder.internal.packaging.zip.utils.CloseableByteSource.java

/**
 * Byte source that can be closed. Closing a byte source allows releasing any resources associated
 * with it. This should not be confused with closing streams. For example, {@link ByteTracker} uses
 * {@code CloseableByteSources} to know when the data associated with the byte source can be
 * released.
 */

From source file com.teradata.tempto.internal.fulfillment.hive.tpch.TpchEntityByteSource.java

/**
 * Output stream which prints out '|' delimited TPCH data for given entity, ex:
 * <pre>
 *     0|ALGERIA|0| haggle. carefully final deposits detect slyly agai|
 *     1|ARGENTINA|1|al foxes promise slyly according to the regular accounts. bold requests alon|
 * </pre>

From source file com.teradata.tempto.internal.fulfillment.table.hive.tpch.TpchEntityByteSource.java

/**
 * Output stream which prints out '|' delimited TPCH data for given entity, ex:
 * <pre>
 *     0|ALGERIA|0| haggle. carefully final deposits detect slyly agai|
 *     1|ARGENTINA|1|al foxes promise slyly according to the regular accounts. bold requests alon|
 * </pre>

From source file com.torodb.mongowp.bson.netty.ByteBufByteSource.java

/**
 *
 */
public class ByteBufByteSource extends ByteSource {

    private final ByteBuf byteBuf;