Package org.geoforge.lang.thread

Examples of org.geoforge.lang.thread.GfrThr


      {
         _INSTANCE_ = new GfrTpeSpcPrj();
        
         GfrTpeSpcPrj._MON_ = new MyMonitor(_INSTANCE_._tpe_);
        
         GfrThr thr = new GfrThr(GfrTpeSpcPrj._MON_, "monitorTpeSpcPrj");
       
         thr.setDaemon(true);
         // TEMPO thr.start();
        
      }
     
      return _INSTANCE_;
View Full Code Here


      if (GfrAppSpcAbs._SSN == null)
         return;


      GfrThr thr = new GfrThr("splashScreen")
      {

         @Override
         public void run()
         {
            _s_runSplash_();
         }
      };

      thr.setPriority(Thread.MIN_PRIORITY);
      thr.start();

      //thr.setDaemon(true);
      //Runtime.getRuntime().addShutdownHook(thr);

   }
View Full Code Here

     
      super._pnlAll.add(Box.createVerticalStrut(10), intPos++); // !!!
      super._pnlAll.add(pbr, intPos++);
      super._pnlAll.add(Box.createVerticalStrut(10), intPos++); // !!!
     
      new GfrThr(new Runnable()
      {
         @Override
         public void run()
         {
               while (true)
View Full Code Here

            this._pop.releaseUnserializedObject();
    }
   
    private void _attachShutDownHook_()
    {
        GfrThr thr = new GfrThr("attachShutDownHookNodeControl")
        {
            @Override
            public void run()
            {
                //System.out.println("GfrNodCtrAbs._attachShutDownHook_().run()");
                _blnShutdownHook = true;
            }
        };
           
        thr.setPriority(Thread.MAX_PRIORITY);
        thr.setDaemon(true);
       
        Runtime.getRuntime().addShutdownHook(thr);
       
        //System.out.println("GfrNodCtrAbs._attachShutDownHook_()");
    }
View Full Code Here

TOP

Related Classes of org.geoforge.lang.thread.GfrThr

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.