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