From 16b9d26ab5e52c3c72dd24f17587ca4775ff79dd Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Thu, 3 Oct 2013 14:02:23 -0400 Subject: fixes #273 - Marking/unmarking Favorite status doesn't cause a library changed notification --- .../Session/ISessionController.cs | 24 +++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Controller/Session/ISessionController.cs') diff --git a/MediaBrowser.Controller/Session/ISessionController.cs b/MediaBrowser.Controller/Session/ISessionController.cs index 597a14cc6..21206af75 100644 --- a/MediaBrowser.Controller/Session/ISessionController.cs +++ b/MediaBrowser.Controller/Session/ISessionController.cs @@ -72,6 +72,28 @@ namespace MediaBrowser.Controller.Session /// /// The cancellation token. /// Task. - Task SendRestartRequiredMessage(CancellationToken cancellationToken); + Task SendRestartRequiredNotification(CancellationToken cancellationToken); + + /// + /// Sends the user data change info. + /// + /// The info. + /// The cancellation token. + /// Task. + Task SendUserDataChangeInfo(UserDataChangeInfo info, CancellationToken cancellationToken); + + /// + /// Sends the server shutdown notification. + /// + /// The cancellation token. + /// Task. + Task SendServerShutdownNotification(CancellationToken cancellationToken); + + /// + /// Sends the server restart notification. + /// + /// The cancellation token. + /// Task. + Task SendServerRestartNotification(CancellationToken cancellationToken); } } -- cgit v1.2.3