51 lines
1.8 KiB
C#
51 lines
1.8 KiB
C#
|
|
using JiShe.CollectBus.Application.Contracts;
|
|||
|
|
using JiShe.CollectBus.Common;
|
|||
|
|
using JiShe.CollectBus.IoTDB.Context;
|
|||
|
|
using JiShe.CollectBus.IoTDB.Interface;
|
|||
|
|
using JiShe.CollectBus.Kafka.Internal;
|
|||
|
|
using JiShe.CollectBus.Kafka.Producer;
|
|||
|
|
using JiShe.CollectBus.Protocol.Interfaces;
|
|||
|
|
using JiShe.CollectBus.Protocol.Services;
|
|||
|
|
using JiShe.CollectBus.RedisDataCache;
|
|||
|
|
using JiShe.CollectBus.ScheduledMeterReading;
|
|||
|
|
using Microsoft.Extensions.Logging;
|
|||
|
|
using Microsoft.Extensions.Options;
|
|||
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Threading.Tasks;
|
|||
|
|
|
|||
|
|
namespace JiShe.CollectBus.DataChannels
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 数据通道管理服务
|
|||
|
|
/// </summary>
|
|||
|
|
public class DataChannelManageService: CollectBusAppService, IDataChannelManageService
|
|||
|
|
{
|
|||
|
|
private readonly ILogger<DataChannelManageService> _logger;
|
|||
|
|
private readonly IIoTDbProvider _dbProvider;
|
|||
|
|
private readonly IProducerService _producerService;
|
|||
|
|
private readonly KafkaOptionConfig _kafkaOptions;
|
|||
|
|
private readonly ServerApplicationOptions _applicationOptions;
|
|||
|
|
private readonly IoTDBRuntimeContext _runtimeContext;
|
|||
|
|
|
|||
|
|
public DataChannelManageService(
|
|||
|
|
ILogger<DataChannelManageService> logger,
|
|||
|
|
IIoTDbProvider dbProvider,
|
|||
|
|
IoTDBRuntimeContext runtimeContext,
|
|||
|
|
IProducerService producerService,
|
|||
|
|
IOptions<KafkaOptionConfig> kafkaOptions,
|
|||
|
|
IOptions<ServerApplicationOptions> applicationOptions)
|
|||
|
|
{
|
|||
|
|
_logger = logger;
|
|||
|
|
_dbProvider = dbProvider;
|
|||
|
|
_runtimeContext = runtimeContext;
|
|||
|
|
_producerService = producerService;
|
|||
|
|
_kafkaOptions = kafkaOptions.Value;
|
|||
|
|
_applicationOptions = applicationOptions.Value;
|
|||
|
|
_runtimeContext.UseTableSessionPool = true;
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|