Package org.alfresco.filesys.alfresco
Interface ShuffleCache
- All Known Implementing Classes:
ShuffleCacheImpl
public interface ShuffleCache
Cache for alfresco "save shuffles" which are used by some applications
to compensate for a most computer filesystem being non atomic.
Overlays an Alfresco repository with temporary files being created and soft deleted from folders that are likely to have save shuffles going on.
Implementations must be thread safe
-
Method Summary
Modifier and TypeMethodDescriptionvoidcreateTemporaryFile(String path) Add a new temporary file to the "shuffle cache".booleanHas the path been "soft created"booleanHas the path been "soft deleted"booleanisShuffleDirectory(String dir) Does the specified directory contain a shuffled temporary filevoidrenameTemporaryFile(String oldPath, String newPath) Takes the contents of a temporary file and applies it to the new path.voidsoftDelete(String path) Soft delete a file.
-
Method Details
-
createTemporaryFile
Add a new temporary file to the "shuffle cache". Content is not persisted in the alfresco repo until either a rename occurs or after a time delay. -
softDelete
Soft delete a file. The file may be re-instated later or the delete made permenant after a time delay. -
renameTemporaryFile
Takes the contents of a temporary file and applies it to the new path.If the new path has been soft deleted then the soft delete is removed.
After the contents of the temporary file have been written the it may may be made available for garbage collection.
- Parameters:
oldPath- the location of the temporaryFilenewPath- the location of the new file.
-
isShuffleDirectory
Does the specified directory contain a shuffled temporary file- Parameters:
dir- String- Returns:
- boolean
-
isDeleted
Has the path been "soft deleted" -
isCreated
Has the path been "soft created"- Parameters:
path- String- Returns:
- boolean
-