Esempio n. 1
0
 public static Ice.DispatchStatus tick___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
 {
     checkMode__(Ice.OperationMode.Idempotent, current__.mode);
     IceInternal.BasicStream is__ = inS__.startReadParams();
     string mktDataId;
     long year;
     long month;
     long day;
     long hours;
     long minutes;
     long seconds;
     long milliseconds;
     double price;
     long volume;
     mktDataId = is__.readString();
     year = is__.readLong();
     month = is__.readLong();
     day = is__.readLong();
     hours = is__.readLong();
     minutes = is__.readLong();
     seconds = is__.readLong();
     milliseconds = is__.readLong();
     price = is__.readDouble();
     volume = is__.readLong();
     inS__.endReadParams();
     obj__.tick(mktDataId, year, month, day, hours, minutes, seconds, milliseconds, price, volume, current__);
     inS__.writeEmptyParams__();
     return Ice.DispatchStatus.DispatchOK;
 }
Esempio n. 2
0
 public static Ice.DispatchStatus getStatus___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
 {
     checkMode__(Ice.OperationMode.Idempotent, current__.mode);
     inS__.readEmptyParams();
     string ret__ = obj__.getStatus(current__);
     IceInternal.BasicStream os__ = inS__.startWriteParams__(Ice.FormatType.DefaultFormat);
     os__.writeString(ret__);
     inS__.endWriteParams__(true);
     return Ice.DispatchStatus.DispatchOK;
 }
Esempio n. 3
0
 public static Ice.DispatchStatus log___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
 {
     checkMode__(Ice.OperationMode.Idempotent, current__.mode);
     IceInternal.BasicStream is__ = inS__.startReadParams();
     string message;
     long logType;
     message = is__.readString();
     logType = is__.readLong();
     inS__.endReadParams();
     obj__.log(message, logType, current__);
     inS__.writeEmptyParams__();
     return Ice.DispatchStatus.DispatchOK;
 }
Esempio n. 4
0
 public static Ice.DispatchStatus shutdown___(MidaxIce obj__, IceInternal.Incoming inS__, Ice.Current current__)
 {
     checkMode__(Ice.OperationMode.Idempotent, current__.mode);
     inS__.readEmptyParams();
     obj__.shutdown(current__);
     inS__.writeEmptyParams__();
     return Ice.DispatchStatus.DispatchOK;
 }