Interface IRunnerMessaging
Interface used to communicate between the RunnerViewModel and the corresponding View.
Namespace: RuriLib.Runner
Assembly: RuriLib.dll
Syntax
public interface IRunnerMessaging
Events
| Improve this Doc View SourceAskCustomInputs
The user needs to type the custom inputs.
Declaration
event Action<IRunnerMessaging> AskCustomInputs
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging> |
DispatchAction
An Action needs to be executed on the main thread.
Declaration
event Action<IRunnerMessaging, Action> DispatchAction
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging, System.Action> |
FoundHit
A Hit was found.
Declaration
event Action<IRunnerMessaging, Hit> FoundHit
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging, Hit> |
MessageArrived
A message has arrived.
Declaration
event Action<IRunnerMessaging, LogLevel, string, bool> MessageArrived
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging, LogLevel, System.String, System.Boolean> |
ReloadProxies
The proxies need to be reloaded.
Declaration
event Action<IRunnerMessaging> ReloadProxies
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging> |
SaveProgress
The progress needs to be saved.
Declaration
event Action<IRunnerMessaging> SaveProgress
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging> |
WorkerStatusChanged
The status of the Master Worker changed.
Declaration
event Action<IRunnerMessaging> WorkerStatusChanged
Event Type
Type | Description |
---|---|
System.Action<IRunnerMessaging> |