Exemplo n.º 1
0
 /// <remarks/>
 public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history, object userState)
 {
     if ((this.AddScheduleHistoryOperationCompleted == null))
     {
         this.AddScheduleHistoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScheduleHistoryOperationCompleted);
     }
     this.InvokeAsync("AddScheduleHistory", new object[] {
         history
     }, this.AddScheduleHistoryOperationCompleted, userState);
 }
Exemplo n.º 2
0
Arquivo: JobBase.cs Projeto: vebin/soa
        private void AfterCall()
        {
            try
            {
                endTime = DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss");
                SchedulerService ss = new SchedulerService();

                ESB_SCHD_HISTORY history = new ESB_SCHD_HISTORY();
                history.BEGIN_TIME = beginTime;
                history.CALL_MEMO = callMemo;
                history.CALL_STATUS = callStatus;
                history.END_TIME = endTime;
                history.SCHD_ID = schedID;

                ss.AddScheduleHistory(history);
            }
            catch (Exception ex)
            {
                _log.Error("添加作业历史记录 失败! 错误信息:" + ex.Message);
            }

        }
Exemplo n.º 3
0
 /// <remarks/>
 public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history)
 {
     this.AddScheduleHistoryAsync(history, null);
 }
Exemplo n.º 4
0
 public void AddScheduleHistory(ESB_SCHD_HISTORY history)
 {
     this.Invoke("AddScheduleHistory", new object[] {
         history
     });
 }
Exemplo n.º 5
0
 /// <remarks/>
 public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history, object userState) {
     if ((this.AddScheduleHistoryOperationCompleted == null)) {
         this.AddScheduleHistoryOperationCompleted = new System.Threading.SendOrPostCallback(this.OnAddScheduleHistoryOperationCompleted);
     }
     this.InvokeAsync("AddScheduleHistory", new object[] {
                 history}, this.AddScheduleHistoryOperationCompleted, userState);
 }
Exemplo n.º 6
0
 /// <remarks/>
 public void AddScheduleHistoryAsync(ESB_SCHD_HISTORY history) {
     this.AddScheduleHistoryAsync(history, null);
 }
Exemplo n.º 7
0
 public void AddScheduleHistory(ESB_SCHD_HISTORY history) {
     this.Invoke("AddScheduleHistory", new object[] {
                 history});
 }