Example #1
0
 protected virtual void OnShutDown(ShutDownEventArgs e)
 {
     if (ShutDown != null)
     {
         ShutDown(this, e);
     }
 }
Example #2
0
        private ShutDownEventArgs OnShutDown(int count)
        {
            ShutDownEventArgs args = new ShutDownEventArgs(count);

            OnShutDown(args);

            return(args);
        }
Example #3
0
        private ShutDownEventArgs OnShutDownForOut()
        {
            ShutDownEventArgs args = new ShutDownEventArgs();

            OnShutDown(args);

            return(args);
        }
 private static void OnShutDownEvent(ShutDownEventArgs args)
 {
     _forceImmediateWrite = true;
     Flush();
 }
Example #5
0
 private static void OnShutDownEvent(ShutDownEventArgs args)
 {
     _workflowFacade.ShutDown();
 }
 private static void OnShutDownEvent(ShutDownEventArgs args)
 {
     dumpAlways = true;
     DumpStacks();
 }
Example #7
0
 private static void OnShutDownEvent(ShutDownEventArgs args)
 {
     _workflowFacade.ShutDown();
 }
 private static void OnShutDownEvent(ShutDownEventArgs args)
 {
     forceImmediateWrite = true;
     Flush();
 }