• 启动线程开启信的线程


    Thread threadTemp = new Thread(new Runnable() {  

     @Override   

    public void run() {    

    try {    

     NightshiftInterval ns = nightshiftIntervalMapper.selectByPrimaryKeyType(1);     

      if(ns!=null && ns.getMillis()!=null){     

         Thread.currentThread().sleep(Long.parseLong(ns.getMillis()));     

         int res = ControllerVehicle(vehicleOld.getSn(), vehicleOld.getCode(), "501");      

        logger.info("<----------------车辆SN:" + vehicleOld.getSn() + ",锁门返回结果:" + res + "!---------------------->");    

       }else{     

           Thread.currentThread().sleep(120000L);      

          int res = ControllerVehicle(vehicleOld.getSn(), vehicleOld.getCode(), "501");     

           logger.info("<----------------车辆SN:" + vehicleOld.getSn() + ",锁门返回结果:" + res + "!---------------------->");

        }    

    }

      catch (InterruptedException e) {    

         e.printStackTrace();    

      }       

    }

     });  

    threadTemp.start();

  • 相关阅读:
    一.创建型模式 Factory
    Tcp/Ip I/O函数
    Tcp/Ip协议理解_简单实例
    Tcp/Ip协议理解_3
    Tcp/Ip协议理解_2
    Tcp/Ip协议理解_1
    abp+angular+bootstrap-table的使用
    Abp mvc angular 添加视图
    Abp添加菜单
    JS 获取一串路径中的文件名称
  • 原文地址:https://www.cnblogs.com/cuijinlong/p/6230153.html
Copyright © 2020-2023  润新知