aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Plugins
diff options
context:
space:
mode:
authorLukePulverenti <luke.pulverenti@gmail.com>2013-03-02 21:47:04 -0500
committerLukePulverenti <luke.pulverenti@gmail.com>2013-03-02 21:47:04 -0500
commit0ea90ef7c62dcdbc68fb250b1066340401c9d450 (patch)
treebecb6c780a2964a442fedae12087053584e00d8b /MediaBrowser.Controller/Plugins
parent71fe785c6de047a09f6f585fd407332e73415f0e (diff)
added IServerEntryPoint to replace plugin.initialize
Diffstat (limited to 'MediaBrowser.Controller/Plugins')
-rw-r--r--MediaBrowser.Controller/Plugins/IServerEntryPoint.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
new file mode 100644
index 000000000..de6de8f84
--- /dev/null
+++ b/MediaBrowser.Controller/Plugins/IServerEntryPoint.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace MediaBrowser.Controller.Plugins
+{
+ /// <summary>
+ /// Interface IServerEntryPoint
+ /// </summary>
+ public interface IServerEntryPoint : IDisposable
+ {
+ /// <summary>
+ /// Runs this instance.
+ /// </summary>
+ void Run();
+ }
+}