Ejemplo n.º 1
0
 public static void InitSingleInstance()
 {
     if (TheProcessor == null)
     {
         TheProcessor = new PushNotificationProcessor();
     }
 }
Ejemplo n.º 2
0
 public static void Destroy()
 {
     if (TheProcessor != null)
     {
         TheProcessor.destroy();
     }
     TheProcessor = null;
 }