public void onStart() { if (null != lifecycle) { lifecycle.OnStart(); } }
/// <summary> /// Notifies the EventHandler when this processor is starting up. /// </summary> private void NotifyStart() { try { _lifecycleAware?.OnStart(); } catch (Exception e) { _exceptionHandler?.HandleOnStartException(e); } }