aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-09-19 22:11:00 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-09-19 22:11:00 -0400
commit0b4e18b9a7d8e0aea23aef7efd3707674f223b2b (patch)
treea46aba32c4dee4e593267e34bc5f0830af7353ee /lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs
parentcdeda79bc7d358c617b05b17d24f3f3c79689379 (diff)
Experimental plugin runtime updates
Diffstat (limited to 'lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs')
-rw-r--r--lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs55
1 files changed, 55 insertions, 0 deletions
diff --git a/lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs b/lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs
new file mode 100644
index 0000000..c883e29
--- /dev/null
+++ b/lib/Plugins.Essentials.ServiceStack/src/IManagedPlugin.cs
@@ -0,0 +1,55 @@
+/*
+* Copyright (c) 2023 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.Essentials.ServiceStack
+* File: IManagedPlugin.cs
+*
+* IManagedPlugin.cs is part of VNLib.Plugins.Essentials.ServiceStack which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.Essentials.ServiceStack is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License as
+* published by the Free Software Foundation, either version 2 of the
+* License, or (at your option) any later version.
+*
+* VNLib.Plugins.Essentials.ServiceStack is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+* GNU Affero General Public License for more details.
+*
+* You should have received a copy of the GNU Affero General Public License
+* along with this program. If not, see https://www.gnu.org/licenses/.
+*/
+
+using VNLib.Plugins.Runtime;
+
+namespace VNLib.Plugins.Essentials.ServiceStack
+{
+
+
+ /// <summary>
+ /// Represents a plugin managed by a <see cref="IHttpPluginManager"/> that includes dynamically loaded plugins
+ /// </summary>
+ public interface IManagedPlugin
+ {
+ /// <summary>
+ /// Exposes the internal <see cref="PluginController"/> for the loaded plugin
+ /// </summary>
+ PluginController Controller { get; }
+
+ /// <summary>
+ /// The file path to the loaded plugin
+ /// </summary>
+ string PluginPath { get; }
+
+ /// <summary>
+ /// The exposed services the inernal plugin provides
+ /// </summary>
+ /// <remarks>
+ /// WARNING: Services exposed by the plugin will abide by the plugin lifecycle, so consumers
+ /// must listen for plugin load/unload events to respect lifecycles properly.
+ /// </remarks>
+ IUnloadableServiceProvider Services { get; }
+ }
+}