Advertisement
sanych_dv

Untitled

Apr 13th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     static public function parseDNPcommands(obj:Object):void
  2.         {
  3.             Logger.log({act: "dnp_info", status: obj.status, printKey: obj.printKey});
  4.            
  5.             switch (obj.status)
  6.             {
  7.                
  8.                 case "STATUS_USUALLY_IDLE":
  9.                 case "STATUS_OTHER":
  10.                    
  11.                     break;
  12.                
  13.                 default:
  14.                    
  15.                     Errors.err(36, obj.status);
  16.                    
  17.                     return;
  18.             }
  19.            
  20.             if (Main._curPrintWorker === PrintDirectly)
  21.             {
  22.                 PrintDirectly.nextPrint(obj);
  23.             }
  24.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement