/// <summary> /// Initializes a new instance of the <see cref="Notifier{ParamType}"/> class. /// </summary> /// <param name="param">The parameter to notify listeners with.</param> public Notifier(ParamType param) { _notificationParam = param; _activated = new AtomicActivation(); }
public DataContainer() { ModificationActivation = new AtomicActivation(); }