mirror of
https://github.com/mihakralj/QuanTAlib.git
synced 2026-08-01 03:07:43 +00:00
15 lines
282 B
C#
15 lines
282 B
C#
using System;
|
|
|
|
namespace QuanTAlib;
|
|
|
|
/// <summary>
|
|
/// Interface for objects that publish TValue updates.
|
|
/// </summary>
|
|
public interface ITValuePublisher
|
|
{
|
|
/// <summary>
|
|
/// Event triggered when a new TValue is available.
|
|
/// </summary>
|
|
event Action<TValue> Pub;
|
|
}
|