Photomechanics API
RD300TurntableApi Class Reference

Turntable API implementation for RD-300. More...

Inheritance diagram for RD300TurntableApi:
[legend]

Public Member Functions

 RD300TurntableApi (ModbusCommandRunner commandRunner, ILogger logger)
 
override String ToString ()
 
- Public Member Functions inherited from ComponentBasedDeviceApiBase
async Task Initialize ()
 Initialize connection with device. More...
 
TComponent GetComponent< TComponent > ()
 Get component of given type. More...
 
- Public Member Functions inherited from AsyncDisposableExtendedBase
async ValueTask DisposeAsync ()
 
Task Initialize ()
 Initialize connection with device. More...
 
TComponent GetComponent< TComponent > ()
 Get component of given type. More...
 

Protected Member Functions

override async ValueTask DisposeAsyncCore ()
 Derived type disposal logic. Do not forget to call base.DisposeAsyncCore() when overriding this. TODO: find base call analyzer for virtual methods like this More...
 
override async Task OnInitializing ()
 Initialize connection with turn table. More...
 
- Protected Member Functions inherited from ComponentBasedDeviceApiBase
 ComponentBasedDeviceApiBase (ILogger logger)
 
abstract Task OnInitializing ()
 Initialize connection with turn table. More...
 
override async ValueTask DisposeAsyncCore ()
 
void InitializeComponents (IEnumerable< IDeviceApiComponent > components)
 Initialize components set. More...
 
void InitializeComponents (params IDeviceApiComponent[] components)
 Initialize components set. More...
 
- Protected Member Functions inherited from AsyncDisposableExtendedBase
 AsyncDisposableExtendedBase (ILogger logger)
 Base constructor for device api. More...
 
abstract ValueTask DisposeAsyncCore ()
 Derived type disposal logic. More...
 
void UpdateLoggerContext ()
 Unfortunately Serilog ForContext method does not store provided object as property value, calling its ToString method immediately instead. In some cases, we want to use information like device name/id as log context but it is only available when derived type is fully constructed and maybe some other initialization took place. For such cases, derived type can use this method to update Logger context value.
 

Properties

ModbusCommandRunner CommandRunner [get]
 
String ConnectionInfo [get]
 Human-readable string that will contain information about connection. More...
 
- Properties inherited from AsyncDisposableExtendedBase
ILogger Logger [get]
 Logger associated with this instance. This way extension methods can use logging without requiring it as parameter. More...
 
Boolean IsDisposed [get]
 Determines whether the object is being disposed or already disposed and no longer functional. More...
 
virtual IAsyncDisposableExtended Owner [get]
 Type and ToString values of this object will appear when logging begin/end of DisposeAsync. This object will also be used as Disposed sender, essentially allowing seamlessly using AsyncDisposableExtendedBase logic even when directly inheriting from it is not possible. Usually it simply returns "this" value, but AsyncDisposableExtendedImpl overrides it to return its owner instance for the aforementioned reason.
 
- Properties inherited from IAsyncDisposableExtended
Boolean IsDisposed [get]
 Determines whether the object is being disposed or already disposed and no longer functional. More...
 
ILogger Logger [get]
 Logger associated with this instance. This way extension methods can use logging without requiring it as parameter. More...
 
- Properties inherited from ITurntableApi
String ConnectionInfo [get]
 Human-readable string that will contain information about connection. More...
 

Additional Inherited Members

- Events inherited from AsyncDisposableExtendedBase
AsyncTypedEventHandler< IAsyncDisposableExtended >? Disposed
 
- Events inherited from IAsyncDisposableExtended
AsyncTypedEventHandler< IAsyncDisposableExtendedDisposed
 Occurs when object is disposed. It should be invoked at the end of IAsyncDisposable.DisposeAsync implementation in a Fire-and-Forget fashion (non-blocking).
 

Detailed Description

Turntable API implementation for RD-300.

Member Function Documentation

◆ DisposeAsyncCore()

override async ValueTask RD300TurntableApi.DisposeAsyncCore ( )
protectedvirtual

Derived type disposal logic. Do not forget to call base.DisposeAsyncCore() when overriding this. TODO: find base call analyzer for virtual methods like this

Reimplemented from ComponentBasedDeviceApiBase.

◆ OnInitializing()

override async Task RD300TurntableApi.OnInitializing ( )
protectedvirtual

Initialize connection with turn table.

Implements ComponentBasedDeviceApiBase.

Property Documentation

◆ ConnectionInfo

String RD300TurntableApi.ConnectionInfo
get

Human-readable string that will contain information about connection.

"COM42" "192.168.0.125:4242"

Implements ITurntableApi.