Package org.intermine.modelproduction
Class MetadataManager.LargeObjectOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.intermine.modelproduction.MetadataManager.LargeObjectOutputStream
-
- All Implemented Interfaces:
java.io.Closeable,java.io.Flushable,java.lang.AutoCloseable
- Enclosing class:
- MetadataManager
public static class MetadataManager.LargeObjectOutputStream extends java.io.OutputStreamOutputStream class that writes to a large object in the database. This object must be closed in order to commit the value and release the connection associated with it.- Author:
- Matthew Wakeling
-
-
Constructor Summary
Constructors Constructor Description LargeObjectOutputStream(java.sql.Connection con, org.postgresql.largeobject.LargeObject obj)Constructs a new object.LargeObjectOutputStream(java.sql.Connection con, org.postgresql.largeobject.LargeObject obj, boolean commitMode)Constructs a new object.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()voidwrite(byte[] b, int off, int len)voidwrite(int b)
-
-
-
Constructor Detail
-
LargeObjectOutputStream
public LargeObjectOutputStream(java.sql.Connection con, org.postgresql.largeobject.LargeObject obj)Constructs a new object.- Parameters:
con- a database Connection, to which this object will have exclusive access, and which must not be in autocommit mode. The connection will be closed when this object is closedobj- a LargeObject to write to
-
LargeObjectOutputStream
public LargeObjectOutputStream(java.sql.Connection con, org.postgresql.largeobject.LargeObject obj, boolean commitMode)Constructs a new object.- Parameters:
con- a database Connection, to which this object will have exclusive access, and which must not be in autocommit mode. The connection will be closed when this object is closedcommitMode- whether autoCommit should be on or off when restoring objectobj- a LargeObject to write to
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException- Specified by:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException- Overrides:
writein classjava.io.OutputStream- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException- Specified by:
closein interfacejava.lang.AutoCloseable- Specified by:
closein interfacejava.io.Closeable- Overrides:
closein classjava.io.OutputStream- Throws:
java.io.IOException
-
-