Uses of Interface
com.atlassian.confluence.index.attachment.AttachmentTextExtraction
-
Packages that use AttachmentTextExtraction Package Description com.atlassian.confluence.index.attachment com.atlassian.confluence.internal.index.attachment -
-
Uses of AttachmentTextExtraction in com.atlassian.confluence.index.attachment
Methods in com.atlassian.confluence.index.attachment that return types with arguments of type AttachmentTextExtraction Modifier and Type Method Description CompletionStage<AttachmentTextExtraction>
AttachmentTextExtractionService. submit(long attachmentId, int version)
Submit a text extraction task for an attachment of the provided id and version. -
Uses of AttachmentTextExtraction in com.atlassian.confluence.internal.index.attachment
Classes in com.atlassian.confluence.internal.index.attachment that implement AttachmentTextExtraction Modifier and Type Class Description class
DefaultAttachmentTextExtraction
Methods in com.atlassian.confluence.internal.index.attachment that return AttachmentTextExtraction Modifier and Type Method Description AttachmentTextExtraction
AttachmentTextExtractionFunction. apply(Long attachmentId, Integer version)
Returns emptyAttachmentTextExtraction
if an attachment has been removed or has been updated into a new version.static AttachmentTextExtraction
DefaultAttachmentTextExtraction. empty()
static AttachmentTextExtraction
DefaultAttachmentTextExtraction. of(byte[] bytes, boolean compressed)
static AttachmentTextExtraction
DefaultAttachmentTextExtraction. of(InputStreamSource source, boolean compressed)
static AttachmentTextExtraction
DefaultAttachmentTextExtraction. of(String text, boolean compressed)
Methods in com.atlassian.confluence.internal.index.attachment that return types with arguments of type AttachmentTextExtraction Modifier and Type Method Description CompletionStage<AttachmentTextExtraction>
LocalAttachmentTextExtractionService. submit(long attachmentId, int version)
CompletionStage<AttachmentTextExtraction>
RemoteAttachmentTextExtractionService. submit(long attachmentId, int version)
Constructor parameters in com.atlassian.confluence.internal.index.attachment with type arguments of type AttachmentTextExtraction Constructor Description LocalAttachmentTextExtractionService(BiFunction<Long,Integer,AttachmentTextExtraction> textExtractionFunction)
-