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