Interface AttachmentTextExtractionService
-
- All Known Implementing Classes:
LocalAttachmentTextExtractionService
,RemoteAttachmentTextExtractionService
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Internal @FunctionalInterface public interface AttachmentTextExtractionService
- Since:
- 6.5
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description CompletionStage<AttachmentTextExtraction>
submit(long attachmentId, int version)
Submit a text extraction task for an attachment of the provided id and version.
-
-
-
Method Detail
-
submit
CompletionStage<AttachmentTextExtraction> submit(long attachmentId, int version)
Submit a text extraction task for an attachment of the provided id and version.- Parameters:
attachmentId
- attachment idversion
- attachment version- Returns:
CompletionStage
describingAttachmentTextExtraction
.
-
-