4 instantiations of SentenceCache
Iot.Device.Bindings (3)
AisManager.cs (1)
148_cache = new SentenceCache(this);
AutopilotController.cs (1)
63_cache = new SentenceCache(input);
PositionProvider.cs (1)
38_cache = new SentenceCache(dataSource);
M5StackRemoteDisplay (1)
RemoteControl.cs (1)
82_cache = new SentenceCache(_tcpClient);
12 references to SentenceCache
Iot.Device.Bindings (6)
AisManager.cs (1)
61private readonly SentenceCache? _cache;
AutopilotController.cs (3)
29private readonly SentenceCache _cache; 57public AutopilotController(NmeaSinkAndSource input, NmeaSinkAndSource output, SentenceCache? cache = null) 116internal SentenceCache SentenceCache
PositionProvider.cs (2)
24private SentenceCache _cache; 46public PositionProvider(SentenceCache cache)
M5StackRemoteDisplay (6)
NmeaDataSet.cs (2)
43public abstract bool Update(SentenceCache cache, double tolerance); 50public bool Update(SentenceCache cache)
NmeaValueDataSet.cs (3)
17private readonly Func<SentenceCache, IQuantity?> _valueFunc; 21public NmeaValueDataSet(String name, Func<SentenceCache, IQuantity?> valueFunc, string format = "F2") 56public override bool Update(SentenceCache cache, double tolerance)
RemoteControl.cs (1)
54private SentenceCache _cache;