diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-09 22:33:19 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-03-09 22:33:19 -0400 |
| commit | 8b534cc34a6e36e78b10d23bfc13c1a3891246b5 (patch) | |
| tree | 21ec0e8a295733e9aa0c8df5b4e35165183c58aa /MediaBrowser.Controller/Session/ISessionManager.cs | |
| parent | d49494476770b3c0a091841bd3bbd44862fb8137 (diff) | |
added session disposal
Diffstat (limited to 'MediaBrowser.Controller/Session/ISessionManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/Session/ISessionManager.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Session/ISessionManager.cs b/MediaBrowser.Controller/Session/ISessionManager.cs index 892ec9345..ee29671c0 100644 --- a/MediaBrowser.Controller/Session/ISessionManager.cs +++ b/MediaBrowser.Controller/Session/ISessionManager.cs @@ -77,6 +77,13 @@ namespace MediaBrowser.Controller.Session Task OnPlaybackStopped(PlaybackStopInfo info); /// <summary> + /// Reports the session ended. + /// </summary> + /// <param name="sessionId">The session identifier.</param> + /// <returns>Task.</returns> + Task ReportSessionEnded(Guid sessionId); + + /// <summary> /// Sends the system command. /// </summary> /// <param name="sessionId">The session id.</param> |
