b1a1aae6c0
improvements to script plugin capabilities and error feedback
16 lines
374 B
C#
16 lines
374 B
C#
using System;
|
|
using System.Threading;
|
|
|
|
namespace SharedLibraryCore.Interfaces;
|
|
|
|
public interface IScriptPluginTimerHelper
|
|
{
|
|
void Start(int delay, int interval);
|
|
void Start(int interval);
|
|
void Start();
|
|
void Stop();
|
|
void OnTick(Delegate action, string actionName);
|
|
bool IsRunning { get; }
|
|
void SetDependency(SemaphoreSlim dependentSemaphore);
|
|
}
|