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

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

Introduction

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

Usage

From source file com.clank.launcher.persistence.MkdirByteSink.java

class MkdirByteSink extends ByteSink {

    private final ByteSink delegate;
    private final File dir;

    public MkdirByteSink(ByteSink delegate, File dir) {

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

class MkdirByteSink extends ByteSink {

    private final ByteSink delegate;
    private final File dir;

    public MkdirByteSink(ByteSink delegate, File dir) {

From source file com.clank.launcher.persistence.ScramblingSinkFilter.java

class ScramblingSinkFilter extends ByteSink {

    private final ByteSink delegate;
    private final String key;

    public ScramblingSinkFilter(ByteSink delegate, String key) {

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

class ScramblingSinkFilter extends ByteSink {

    private final ByteSink delegate;
    private final String key;

    public ScramblingSinkFilter(ByteSink delegate, String key) {

From source file org.queeg.hadoop.tar.PathByteSink.java

public class PathByteSink extends ByteSink {

    private FileSystem fs;
    private Path path;

    public PathByteSink(Configuration conf, Path path) throws IOException {

From source file org.sosy_lab.cpachecker.appengine.io.DataStoreByteSink.java

public class DataStoreByteSink extends ByteSink {

    private TaskFile file;
    private FileWriteMode[] mode;

    public DataStoreByteSink(TaskFile file, FileWriteMode... mode) {

From source file net.derquinse.common.io.MemoryByteSink.java

/**
 * Memory byte sink. Every time an atomic write operation is performed on the sink or an stream
 * opened through the sink is closed, a MemoryByteSource is added to the queue.
 * @author Andres Rodriguez
 */
@Beta

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

/**
 * {@link ByteSink} extension that adds {@link #openChannel()}. Only once of
 * {@link #openStream()} or {@link #openChannel()} needs to be implemented.
 * 
 * @see BAOutputStream#asByteSink()
 * @author Ian