Ejemplo n.º 1
0
 public static void EndHandler()
 {
     // Commit
     if (CurrentHandler != null)
     {
         CurrentHandler.Commit();
         CurrentHandler = null;
     }
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Starts up the TLK subsystem. These methods should not be across multiple threads as they are not thread safe!
 /// </summary>
 /// <param name="usingDLCSystem"></param>
 public static void StartHandler()
 {
     CurrentHandler = new TLKHandler();
     CurrentHandler.Start();
 }