diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-03 14:02:23 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-03 14:02:23 -0400 |
| commit | 16b9d26ab5e52c3c72dd24f17587ca4775ff79dd (patch) | |
| tree | 4b6ef5582845768caf54144f3372ed603da90b1f /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | d021e20249c85ab96783e1347d95f826a816ff9b (diff) | |
fixes #273 - Marking/unmarking Favorite status doesn't cause a library changed notification
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index b2d111e54..771d8f72e 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -119,6 +119,20 @@ namespace MediaBrowser.Controller.Session /// </summary> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>Task.</returns> - Task SendRestartRequiredMessage(CancellationToken cancellationToken); + Task SendRestartRequiredNotification(CancellationToken cancellationToken); + + /// <summary> + /// Sends the server shutdown notification. + /// </summary> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task SendServerShutdownNotification(CancellationToken cancellationToken); + + /// <summary> + /// Sends the server restart notification. + /// </summary> + /// <param name="cancellationToken">The cancellation token.</param> + /// <returns>Task.</returns> + Task SendServerRestartNotification(CancellationToken cancellationToken); } }
\ No newline at end of file |
