2019-01-13 20:01:16 +00:00
|
|
|
using System;
|
2019-01-27 14:40:37 +00:00
|
|
|
using System.Threading.Tasks;
|
2018-12-27 23:27:57 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Plugins
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Interface IServerEntryPoint
|
|
|
|
/// </summary>
|
|
|
|
public interface IServerEntryPoint : IDisposable
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Runs this instance.
|
|
|
|
/// </summary>
|
2019-01-27 14:40:37 +00:00
|
|
|
Task RunAsync();
|
2018-12-27 23:27:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public interface IRunBeforeStartup
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|