Package org.postgresql.gss
Class GSSOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.postgresql.gss.GSSOutputStream
-
- All Implemented Interfaces:
Closeable,Flushable,AutoCloseable
public class GSSOutputStream extends OutputStream
-
-
Constructor Summary
Constructors Constructor Description GSSOutputStream(OutputStream out, GSSContext gssContext, MessageProp messageProp, int bufferSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidflush()voidwrite(byte[] buf)voidwrite(byte[] b, int pos, int len)voidwrite(int b)-
Methods inherited from class java.io.OutputStream
close, nullOutputStream
-
-
-
-
Constructor Detail
-
GSSOutputStream
public GSSOutputStream(OutputStream out, GSSContext gssContext, MessageProp messageProp, int bufferSize)
-
-
Method Detail
-
write
public void write(int b) throws IOException- Specified by:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] buf) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
write
public void write(byte[] b, int pos, int len) throws IOException- Overrides:
writein classOutputStream- Throws:
IOException
-
flush
public void flush() throws IOException- Specified by:
flushin interfaceFlushable- Overrides:
flushin classOutputStream- Throws:
IOException
-
-