aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/ILibraryMonitor.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-24 13:45:20 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-24 13:45:20 -0500
commit10d4ad98d9fe2e11cc6de78eb0f68307162974fe (patch)
tree890dd93c8b8a8b11f01072879f19ac1d7af9142e /MediaBrowser.Controller/Library/ILibraryMonitor.cs
parent1b4dbe88948f9b7103bbdd51427c4a93b102037e (diff)
create notion of locked path
Diffstat (limited to 'MediaBrowser.Controller/Library/ILibraryMonitor.cs')
-rw-r--r--MediaBrowser.Controller/Library/ILibraryMonitor.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Library/ILibraryMonitor.cs b/MediaBrowser.Controller/Library/ILibraryMonitor.cs
index 918382f04..e965e47d6 100644
--- a/MediaBrowser.Controller/Library/ILibraryMonitor.cs
+++ b/MediaBrowser.Controller/Library/ILibraryMonitor.cs
@@ -32,5 +32,12 @@ namespace MediaBrowser.Controller.Library
/// </summary>
/// <param name="path">The path.</param>
void ReportFileSystemChanged(string path);
+
+ /// <summary>
+ /// Determines whether [is path locked] [the specified path].
+ /// </summary>
+ /// <param name="path">The path.</param>
+ /// <returns><c>true</c> if [is path locked] [the specified path]; otherwise, <c>false</c>.</returns>
+ bool IsPathLocked(string path);
}
} \ No newline at end of file