Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsliebig2007-12-03 12:38:02 +0000
committersliebig2007-12-03 12:38:02 +0000
commitda8715c03f80c9e7ada45e04f02caaf263e33257 (patch)
tree0707b104b2eed8ad4297ac5d314d0fbaecee645d /bundles/org.eclipse.equinox.p2.artifact.repository/src
parent3fb4835c698a0d98d35c09c7ce5176b2e84343cf (diff)
downloadrt.equinox.p2-da8715c03f80c9e7ada45e04f02caaf263e33257.tar.gz
rt.equinox.p2-da8715c03f80c9e7ada45e04f02caaf263e33257.tar.xz
rt.equinox.p2-da8715c03f80c9e7ada45e04f02caaf263e33257.zip
removed IArtifactRequest parameter (bug: 210475), returned stream is now cancelable/abortable.
Diffstat (limited to 'bundles/org.eclipse.equinox.p2.artifact.repository/src')
-rw-r--r--bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/p2/artifact/repository/IArtifactRepository.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/p2/artifact/repository/IArtifactRepository.java b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/p2/artifact/repository/IArtifactRepository.java
index 0d6d940b6..6c47af0f2 100644
--- a/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/p2/artifact/repository/IArtifactRepository.java
+++ b/bundles/org.eclipse.equinox.p2.artifact.repository/src/org/eclipse/equinox/p2/artifact/repository/IArtifactRepository.java
@@ -83,10 +83,10 @@ public interface IArtifactRepository extends IRepository {
* artifact descriptor.
* @param descriptor the descriptor describing the artifact data to be written to the
* resultant stream
- * @param request may be null if not getting filled by an <code>IArtifactRequest</code>
- * @return the stream to which the artifact content can be written
+ * @return the stream to which the artifact content can be written. The returned output
+ * stream may implement <code>IStateful</code>.
*/
- public OutputStream getOutputStream(IArtifactDescriptor descriptor, IArtifactRequest request);
+ public OutputStream getOutputStream(IArtifactDescriptor descriptor);
/**
* Remove the all keys, descriptors, and contents from this repository.

Back to the top