-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreinterfaces IScriptPluginTimerHelper
RaidMax edited this page May 21, 2023
·
1 revision
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.IScriptPluginTimerHelper[[IScriptPluginTimerHelper]]
class SharedLibraryCore.Interfaces.IScriptPluginTimerHelper interfaceStyle;
end
| Type | Name | Methods |
|---|---|---|
bool |
IsRunning |
get |
| Returns | Name |
|---|---|
void |
OnTick(Delegate action, string actionName) |
void |
SetDependency(SemaphoreSlim dependentSemaphore) |
void |
Start(...) |
void |
Stop() |
public void Start(int delay, int interval)| Type | Name | Description |
|---|---|---|
int |
delay | |
int |
interval |
public void Start(int interval)| Type | Name | Description |
|---|---|---|
int |
interval |
public void Start()public void Stop()public void OnTick(Delegate action, string actionName)| Type | Name | Description |
|---|---|---|
Delegate |
action | |
string |
actionName |
public void SetDependency(SemaphoreSlim dependentSemaphore)| Type | Name | Description |
|---|---|---|
SemaphoreSlim |
dependentSemaphore |
public bool IsRunning { get; }Generated with ModularDoc