using System; namespace QuanTAlib; /// /// Interface for objects that publish TValue updates. /// public interface ITValuePublisher { /// /// Event triggered when a new TValue is available. /// event Action Pub; }