aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2019-01-27 15:40:37 +0100
committerBond_009 <bond.009@outlook.com>2019-01-27 15:40:37 +0100
commit85a58fd655240fd0ddd10bdaaad4a9bb8cd7051d (patch)
tree9cbbefe37ef4a293a42fe9f419809e4b2156f4ea /MediaBrowser.Controller/Plugins
parentee89236fe8e8fbb94969e228df98b9fc6f3ecd77 (diff)
Start startup tasks async
Diffstat (limited to 'MediaBrowser.Controller/Plugins')
-rw-r--r--MediaBrowser.Controller/Plugins/IServerEntryPoint.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
index 7b7a591aa..e57929989 100644
--- a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
+++ b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
@@ -1,4 +1,5 @@
using System;
+using System.Threading.Tasks;
namespace MediaBrowser.Controller.Plugins
{
@@ -10,7 +11,7 @@ namespace MediaBrowser.Controller.Plugins
/// <summary>
/// Runs this instance.
/// </summary>
- void Run();
+ Task RunAsync();
}
public interface IRunBeforeStartup