Home | History | Annotate | Download | only in io

Lines Matching refs:marker

23  * marker object is reclaimed by the garbage collector.
49 * Track the specified file, using the provided marker, deleting the file
50 * when the marker instance is garbage collected.
54 * @param marker the marker object used to track the file, not null
59 public static void track(File file, Object marker) {
60 theInstance.track(file, marker);
64 * Track the specified file, using the provided marker, deleting the file
65 * when the marker instance is garbage collected.
69 * @param marker the marker object used to track the file, not null
75 public static void track(File file, Object marker, FileDeleteStrategy deleteStrategy) {
76 theInstance.track(file, marker, deleteStrategy);
80 * Track the specified file, using the provided marker, deleting the file
81 * when the marker instance is garbage collected.
85 * @param marker the marker object used to track the file, not null
90 public static void track(String path, Object marker) {
91 theInstance.track(path, marker);
95 * Track the specified file, using the provided marker, deleting the file
96 * when the marker instance is garbage collected.
100 * @param marker the marker object used to track the file, not null
106 public static void track(String path, Object marker, FileDeleteStrategy deleteStrategy) {
107 theInstance.track(path, marker, deleteStrategy);