Uses of Interface
org.apache.nifi.controller.repository.claim.ContentClaim
Packages that use ContentClaim
-
Uses of ContentClaim in org.apache.nifi.controller.repository
Methods in org.apache.nifi.controller.repository that return ContentClaimModifier and TypeMethodDescriptionContentRepository.clone(ContentClaim original, boolean lossTolerant) Clones the content for the given content claim and returns content claim of the new objectContentRepository.create(boolean lossTolerant) Creates a new content claimFlowFileRecord.getContentClaim()RepositoryRecord.getCurrentClaim()RepositoryRecord.getOriginalClaim()Methods in org.apache.nifi.controller.repository that return types with arguments of type ContentClaimMethods in org.apache.nifi.controller.repository with parameters of type ContentClaimModifier and TypeMethodDescriptionContentRepository.clone(ContentClaim original, boolean lossTolerant) Clones the content for the given content claim and returns content claim of the new objectintContentRepository.decrementClaimantCount(ContentClaim claim) Reduces the number of claimants for the given claim.longContentRepository.exportTo(ContentClaim claim, OutputStream destination) Exports the content of the given claim to the given destination.longContentRepository.exportTo(ContentClaim claim, OutputStream destination, long offset, long length) Exports a subset of the content of the given claim, starting at offset and copying length bytes, to the given destination.longContentRepository.exportTo(ContentClaim claim, Path destination, boolean append) Exports the content of the given claim to the given destination.longContentRepository.exportTo(ContentClaim claim, Path destination, boolean append, long offset, long length) Exports the content of the given claim to the given destination.intContentRepository.getClaimantCount(ContentClaim claim) Obtains the current number of claimants for the given claimlongContentRepository.importFrom(InputStream content, ContentClaim claim) Imports content from the given stream creating a new content object and claim within the repository.longContentRepository.importFrom(Path content, ContentClaim claim) Imports content from the given path creating a new content object and claim within the repository.intContentRepository.incrementClaimaintCount(ContentClaim claim) Increments the number of claimants for the given claimbooleanContentRepository.isAccessible(ContentClaim contentClaim) ContentRepository.read(ContentClaim claim) Provides access to the input stream for the given claimbooleanContentRepository.remove(ContentClaim claim) Removes the content indicated by the given claimlongContentRepository.size(ContentClaim claim) ContentRepository.write(ContentClaim claim) Obtains an OutputStream to the content for the given claim.