30 lines
No EOL
799 B
C#
30 lines
No EOL
799 B
C#
using Microsoft.Extensions.Logging;
|
|
using Microsoft.Extensions.Options;
|
|
using NucuCar.Domain.Telemetry;
|
|
|
|
// ReSharper disable ClassWithVirtualMembersNeverInherited.Global
|
|
|
|
namespace NucuCar.Telemetry
|
|
{
|
|
public class SensorTelemetry
|
|
{
|
|
public TelemetryPublisher Publisher { get; set; }
|
|
|
|
public SensorTelemetry()
|
|
{
|
|
}
|
|
|
|
public SensorTelemetry(ILogger<SensorTelemetry> logger, IOptions<TelemetryConfig> options)
|
|
{
|
|
if (options.Value.ServiceEnabled)
|
|
{
|
|
Publisher = TelemetryPublisherFactory.Create(options.Value.Publisher, options.Value.ConnectionString,
|
|
"NucuCar.Sensors", logger);
|
|
}
|
|
else
|
|
{
|
|
Publisher = null;
|
|
}
|
|
}
|
|
}
|
|
} |