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