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.OutputStream
OutputStream 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 void
close()
void
write(byte[] b, int off, int len)
void
write(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:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int off, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
close
public void close() throws java.io.IOException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in interfacejava.io.Closeable
- Overrides:
close
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-