public abstract class OutStream extends OutputStream
OutStream
is the base output stream class for TachyonFile streaming output methods.
It can only be gotten by calling the methods in tachyon.client.TachyonFile
, but can
not be initialized by the client code.Modifier and Type | Field and Description |
---|---|
protected TachyonFile |
mFile |
protected TachyonFS |
mTachyonFS |
protected UserConf |
mUserConf |
protected WriteType |
mWriteType |
protected final UserConf mUserConf
protected final TachyonFile mFile
protected final TachyonFS mTachyonFS
protected final WriteType mWriteType
public abstract void cancel() throws IOException
IOException
public abstract void close() throws IOException
close
in interface Closeable
close
in interface AutoCloseable
close
in class OutputStream
IOException
public abstract void flush() throws IOException
flush
in interface Flushable
flush
in class OutputStream
IOException
public abstract void write(byte[] b) throws IOException
write
in class OutputStream
IOException
public abstract void write(byte[] b, int off, int len) throws IOException
write
in class OutputStream
IOException
public abstract void write(int b) throws IOException
write
in class OutputStream
IOException
Copyright © 2015. All Rights Reserved.