Home | History | Annotate | Download | only in io

Lines Matching defs:track

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

63 * Track the specified file, using the provided marker, deleting the file
68 * @param marker the marker object used to track the file, not null
71 public void track(File file, Object marker) {
72 track(file, marker, (FileDeleteStrategy) null);
76 * Track the specified file, using the provided marker, deleting the file
81 * @param marker the marker object used to track the file, not null
85 public void track(File file, Object marker, FileDeleteStrategy deleteStrategy) {
93 * Track the specified file, using the provided marker, deleting the file
98 * @param marker the marker object used to track the file, not null
101 public void track(String path, Object marker) {
102 track(path, marker, (FileDeleteStrategy) null);
106 * Track the specified file, using the provided marker, deleting the file
111 * @param marker the marker object used to track the file, not null
115 public void track(String path, Object marker, FileDeleteStrategy deleteStrategy) {
126 * @param marker the marker object used to track the file, not null
239 * @param marker the marker object used to track the file, not null