diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 13:32:10 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-20 13:32:10 -0400 |
| commit | f3ce127a62714c97747f1e9575aaea1e9cdb3b6a (patch) | |
| tree | d138a473d31b69e8ba59020b0dc1da3c51c2833e /MediaBrowser.Common | |
| parent | e50c29ffca5c4a5865d8b0bf34c2f655387f1d3e (diff) | |
starting point towards running as a service
Diffstat (limited to 'MediaBrowser.Common')
| -rw-r--r-- | MediaBrowser.Common/IApplicationHost.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Common/IApplicationHost.cs b/MediaBrowser.Common/IApplicationHost.cs index 1ff28d924f..7cb58f580b 100644 --- a/MediaBrowser.Common/IApplicationHost.cs +++ b/MediaBrowser.Common/IApplicationHost.cs @@ -37,7 +37,7 @@ namespace MediaBrowser.Common /// <summary> /// Restarts this instance. /// </summary> - void Restart(); + Task Restart(); /// <summary> /// Gets the application version. @@ -113,7 +113,7 @@ namespace MediaBrowser.Common /// <summary> /// Shuts down. /// </summary> - void Shutdown(); + Task Shutdown(); /// <summary> /// Gets the plugins. |
