Class AbstractArtifactRepository2.CommittingArtifactOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.eclipse.tycho.repository.p2base.artifact.repository.AbstractArtifactRepository2.CommittingArtifactOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
,org.eclipse.equinox.internal.provisional.p2.repository.IStateful
- Enclosing class:
- AbstractArtifactRepository2
private class AbstractArtifactRepository2.CommittingArtifactOutputStream extends java.io.OutputStream implements org.eclipse.equinox.internal.provisional.p2.repository.IStateful
-
-
Field Summary
Fields Modifier and Type Field Description (package private) java.io.OutputStream
artifactOutputStream
(package private) IArtifactSink
artifactSink
private org.eclipse.core.runtime.IStatus
externallySetStatus
-
Constructor Summary
Constructors Constructor Description CommittingArtifactOutputStream(IArtifactSink artifactSink)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
org.eclipse.core.runtime.IStatus
getStatus()
void
setStatus(org.eclipse.core.runtime.IStatus status)
void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
-
-
Field Detail
-
artifactSink
final IArtifactSink artifactSink
-
artifactOutputStream
final java.io.OutputStream artifactOutputStream
-
externallySetStatus
private org.eclipse.core.runtime.IStatus externallySetStatus
-
-
Constructor Detail
-
CommittingArtifactOutputStream
public CommittingArtifactOutputStream(IArtifactSink artifactSink) throws ArtifactSinkException
- Throws:
ArtifactSinkException
-
-
Method Detail
-
setStatus
public void setStatus(org.eclipse.core.runtime.IStatus status)
- Specified by:
setStatus
in interfaceorg.eclipse.equinox.internal.provisional.p2.repository.IStateful
-
getStatus
public org.eclipse.core.runtime.IStatus getStatus()
- Specified by:
getStatus
in interfaceorg.eclipse.equinox.internal.provisional.p2.repository.IStateful
-
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
-
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) throws java.io.IOException
- Overrides:
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
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-