package com.battdata_rt;
|
|
import com.sql.MysqlConnPool;
|
import java.util.ArrayList;
|
|
public class PowerData_RT_RamDB_Thread extends Thread {
|
MysqlConnPool m_conn_pool;
|
ArrayList<PowerData_RT> al_bgdata;
|
double ser_ver = 0.0D;
|
boolean server_start_inf_set_ok = false;
|
|
public PowerData_RT_RamDB_Thread(MysqlConnPool conn_pool, ArrayList<PowerData_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
|
*/
|