Package org.alfresco.repo.rendition2
Interface TransformReplyProvider
- All Known Implementing Classes:
StubTransformReplyProvider
public interface TransformReplyProvider
Produce TransformReply events.
- Author:
- aepure
-
Method Summary
Modifier and TypeMethodDescriptionvoidproduceTransformEvent(NodeRef sourceNodeRef, InputStream transformInputStream, TransformDefinition transformDefinition, int transformContentHashCode) Stores content from transformInputStream on a defined store, produces a TransformReply response message and send it to a specific queue defined in transformDefinition.
-
Method Details
-
produceTransformEvent
void produceTransformEvent(NodeRef sourceNodeRef, InputStream transformInputStream, TransformDefinition transformDefinition, int transformContentHashCode) Stores content from transformInputStream on a defined store, produces a TransformReply response message and send it to a specific queue defined in transformDefinition.- Parameters:
sourceNodeRef- the node from which the content is retrieved.transformInputStream- content resulted after transformation.transformDefinition- which defines the transform, where to sent the response and some client specified data.transformContentHashCode- hash code of the resulted content.
-