示例#1
0
 RealtimMultiSync(String _myurl, String _code, String _saveHistoryType) {
   myurl = _myurl;
   code = Functions.getFormattedSHSZ(_code);
   saveHistoryType = _saveHistoryType;
   voltmp = 0;
   sv = new ServerDataRetriever();
 }
示例#2
0
 RealtimMultiSync(String _myurl, String _code) {
   myurl = _myurl;
   code = Functions.getFormattedSHSZ(_code);
   // default is true
   saveHistory = true;
   voltmp = 0;
 }
示例#3
0
 RealtimMultiSync(String _myurl, String _code, Boolean _saveHistory) {
   myurl = _myurl;
   code = Functions.getFormattedSHSZ(_code);
   saveHistory = _saveHistory;
   voltmp = 0;
 }