Commit Latest
Some checks failed
Build .NET Project / build (push) Has been cancelled

This commit is contained in:
2026-02-26 22:17:55 -05:00
parent 6172620343
commit 6b632f5c4f

View File

@@ -2,14 +2,14 @@ using MarketData.MarketDataModel;
using MarketData.Utils;
using MarketData.DataAccess;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace MarketData.Cache
{
/// <summary>
/// GLPriceCache - Used by Gain/Loss Generator which are usedby MarketDataSErver and the User Interface.
/// The entire cache evicts every hour so calling Add(PortfolioTrades portfolioTrades) will force price reload
/// Always ensures that open trade symbols get most recent price from the database.
/// </summary>
public class GLPriceCache : IDisposable
{
// -- Singleton ------------------------------------------------------------