Administrator
2021-01-20 929c6af032f17eb85310cb027730fc6472b6fd5f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package com.battdata_rt;
 
import com.sql.MysqlConnPool;
import java.util.ArrayList;
 
public class BattData_RT_RamDB_Thread extends Thread {
    MysqlConnPool m_conn_pool;
    ArrayList<BattData_RT> al_bgdata;
    double ser_ver = 0.0D;
    boolean server_start_inf_set_ok = false;
 
    public BattData_RT_RamDB_Thread(MysqlConnPool conn_pool, ArrayList<BattData_RT> bd_al, double ver) {
        this.m_conn_pool = conn_pool;
        this.al_bgdata = bd_al;
        this.ser_ver = ver;
    }
 
    public void run() {
        while (true)
            try {
                Thread.sleep(1000L);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
    }
}
 
/*
 * Location:
 * C:\Users\LiJun\Desktop\公司各种设备资料\9600显示模块相关文件\后台程序\2018-09-07\BattFBS9600XSP.
 * jar Qualified Name: com.battdata_rt.BattData_RT_RamDB_Thread JD-Core Version:
 * 0.6.2
 */