-
-
Notifications
You must be signed in to change notification settings - Fork 49
sharedlibrarycoreinterfaces ICoreEventHandler
RaidMax edited this page May 21, 2023
·
1 revision
Handles games events (from log, manual events, etc)
flowchart LR
classDef interfaceStyle stroke-dasharray: 5 5;
classDef abstractStyle stroke-width:4px
subgraph SharedLibraryCore.Interfaces
SharedLibraryCore.Interfaces.ICoreEventHandler[[ICoreEventHandler]]
class SharedLibraryCore.Interfaces.ICoreEventHandler interfaceStyle;
end
| Returns | Name |
|---|---|
void |
QueueEvent(IManager manager, CoreEvent coreEvent)Add a core event event to the queue to be processed |
void |
StartProcessing(CancellationToken token) |
Handles games events (from log, manual events, etc)
public void QueueEvent(IManager manager, CoreEvent coreEvent)| Type | Name | Description |
|---|---|---|
IManager |
manager | IManager |
CoreEvent |
coreEvent | CoreEvent |
Add a core event event to the queue to be processed
public void StartProcessing(CancellationToken token)| Type | Name | Description |
|---|---|---|
CancellationToken |
token |
Generated with ModularDoc