Show / Hide Table of Contents

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 Source

AskCustomInputs

The user needs to type the custom inputs.

Declaration
event Action<IRunnerMessaging> AskCustomInputs
Event Type
Type Description
System.Action<IRunnerMessaging>
| Improve this Doc View Source

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>
| Improve this Doc View Source

FoundHit

A Hit was found.

Declaration
event Action<IRunnerMessaging, Hit> FoundHit
Event Type
Type Description
System.Action<IRunnerMessaging, Hit>
| Improve this Doc View Source

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>
| Improve this Doc View Source

ReloadProxies

The proxies need to be reloaded.

Declaration
event Action<IRunnerMessaging> ReloadProxies
Event Type
Type Description
System.Action<IRunnerMessaging>
| Improve this Doc View Source

SaveProgress

The progress needs to be saved.

Declaration
event Action<IRunnerMessaging> SaveProgress
Event Type
Type Description
System.Action<IRunnerMessaging>
| Improve this Doc View Source

WorkerStatusChanged

The status of the Master Worker changed.

Declaration
event Action<IRunnerMessaging> WorkerStatusChanged
Event Type
Type Description
System.Action<IRunnerMessaging>
  • Improve this Doc
  • View Source
Back to top Generated by DocFX