Class FakeEventDispatcherService
No-op IEventDispatcherService implementation for testing.
Inheritance
FakeEventDispatcherService
Assembly: Tests.dll
Syntax
public class FakeEventDispatcherService : IEventDispatcherService, IService, IFoundationSettings
Constructors
FakeEventDispatcherService()
Declaration
public FakeEventDispatcherService()
Properties
Guid
Declaration
public string Guid { get; set; }
Property Value
Id
Declaration
public string Id { get; set; }
Property Value
LogService
Declaration
public ILogService LogService { get; set; }
Property Value
Methods
Dispatch(EventDispatcherSignal, Type)
Declaration
public void Dispatch(EventDispatcherSignal signal, Type type)
Parameters
Dispatch<T>(T)
Declaration
public void Dispatch<T>(T signal) where T : EventDispatcherSignal
Parameters
| Type |
Name |
Description |
| T |
signal |
|
Type Parameters
Subscribe<T>(EventDispatcherSignalDelegate)
Declaration
public void Subscribe<T>(EventDispatcherSignalDelegate callback) where T : EventDispatcherSignal
Parameters
Type Parameters
Unsubscribe<T>(EventDispatcherSignalDelegate)
Declaration
public void Unsubscribe<T>(EventDispatcherSignalDelegate callback) where T : EventDispatcherSignal
Parameters
Type Parameters
Implements