Home | History | Annotate | Download | only in io

Lines Matching refs:track

22  * Keeps track of files awaiting deletion, and deletes them when an associated

48 * Track the specified file, using the provided marker, deleting the file
53 * @param marker the marker object used to track the file, not null
55 * @deprecated Use {@link FileCleaningTracker#track(File, Object)}.
57 public static void track(File file, Object marker) {
58 theInstance.track(file, marker);
62 * Track the specified file, using the provided marker, deleting the file
67 * @param marker the marker object used to track the file, not null
70 * @deprecated Use {@link FileCleaningTracker#track(File, Object, FileDeleteStrategy)}.
72 public static void track(File file, Object marker, FileDeleteStrategy deleteStrategy) {
73 theInstance.track(file, marker, deleteStrategy);
77 * Track the specified file, using the provided marker, deleting the file
82 * @param marker the marker object used to track the file, not null
84 * @deprecated Use {@link FileCleaningTracker#track(String, Object)}.
86 public static void track(String path, Object marker) {
87 theInstance.track(path, marker);
91 * Track the specified file, using the provided marker, deleting the file
96 * @param marker the marker object used to track the file, not null
99 * @deprecated Use {@link FileCleaningTracker#track(String, Object, FileDeleteStrategy)}.
101 public static void track(String path, Object marker, FileDeleteStrategy deleteStrategy) {
102 theInstance.track(path, marker, deleteStrategy);