aboutsummaryrefslogtreecommitdiff
path: root/lib/Plugins.PluginBase/src/IPluginTaskObserver.cs
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-06-16 13:33:43 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2023-06-16 13:33:43 -0400
commit44f25885437d6d09ea04cf74db4556df95821d56 (patch)
treeb7876edf7b36f0c56ec9bcd947dcbcbb4a9b6a1f /lib/Plugins.PluginBase/src/IPluginTaskObserver.cs
parentabbfe728fde9e0a5643b3c4e85d1cd27b15c59f4 (diff)
Some tcp buf, minor bits and bobs
Diffstat (limited to 'lib/Plugins.PluginBase/src/IPluginTaskObserver.cs')
-rw-r--r--lib/Plugins.PluginBase/src/IPluginTaskObserver.cs46
1 files changed, 46 insertions, 0 deletions
diff --git a/lib/Plugins.PluginBase/src/IPluginTaskObserver.cs b/lib/Plugins.PluginBase/src/IPluginTaskObserver.cs
new file mode 100644
index 0000000..df75614
--- /dev/null
+++ b/lib/Plugins.PluginBase/src/IPluginTaskObserver.cs
@@ -0,0 +1,46 @@
+/*
+* Copyright (c) 2023 Vaughn Nugent
+*
+* Library: VNLib
+* Package: VNLib.Plugins.PluginBase
+* File: IPluginTaskObserver.cs
+*
+* IPluginTaskObserver.cs is part of VNLib.Plugins.PluginBase which is part of the larger
+* VNLib collection of libraries and utilities.
+*
+* VNLib.Plugins.PluginBase is free software: you can redistribute it and/or modify
+* it under the terms of the GNU 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.PluginBase 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
+* General Public License for more details.
+*
+* You should have received a copy of the GNU General Public License
+* along with VNLib.Plugins.PluginBase. If not, see http://www.gnu.org/licenses/.
+*/
+
+using System.Threading.Tasks;
+
+namespace VNLib.Plugins
+{
+ /// <summary>
+ /// Represents an plugin task observer to observe background operations
+ /// </summary>
+ public interface IPluginTaskObserver
+ {
+ /// <summary>
+ /// Adds a task to the observation list
+ /// </summary>
+ /// <param name="task">The task to observe</param>
+ void ObserveTask(Task task);
+
+ /// <summary>
+ /// Removes a task from the task observation list
+ /// </summary>
+ /// <param name="task">The task to remove</param>
+ void RemoveObservedTask(Task task);
+ }
+} \ No newline at end of file