forked from ddrilling/AsbCloudServer
23 lines
550 B
C#
23 lines
550 B
C#
using AsbCloudDb.Model;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Collections;
|
|
using System;
|
|
using AsbCloudApp.Services;
|
|
|
|
#nullable enable
|
|
namespace AsbCloudInfrastructure.Services.SAUB
|
|
{
|
|
public class TelemetryDataCache
|
|
{
|
|
private readonly ConcurrentDictionary<int, Dictionary<int, IEnumerable>> caches;
|
|
private static TelemetryDataCache? instance;
|
|
|
|
public TelemetryDataCache(IAsbCloudDbContext db)
|
|
{
|
|
caches = new ();
|
|
}
|
|
|
|
}
|
|
}
|
|
#nullable disable |