Package org.globus.io.streams
Class GlobusFileOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.globus.io.streams.GlobusOutputStream
-
- org.globus.io.streams.GlobusFileOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class GlobusFileOutputStream extends GlobusOutputStream
-
-
Constructor Summary
Constructors Constructor Description GlobusFileOutputStream(String file, boolean append)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidabort()Aborts transfer.voidclose()voidflush()voidwrite(byte[] msg)voidwrite(byte[] msg, int from, int length)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
nullOutputStream
-
-
-
-
Constructor Detail
-
GlobusFileOutputStream
public GlobusFileOutputStream(String file, boolean append) throws IOException
- Throws:
IOException
-
-
Method Detail
-
abort
public void abort()
Description copied from class:GlobusOutputStreamAborts transfer. Usually makes sure to release all resources (sockets, file descriptors)
Does nothing by default.- Overrides:
abortin classGlobusOutputStream
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Overrides:
closein classOutputStream- Throws:
IOException
-
write
public void write(byte[] msg) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] msg, int from, int length) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(int b) throws IOException- Overrides:
writein classGlobusOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
-