using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Quartz;

namespace QMTask.DataDeal
{
    public class SimpleJob:IJob
    {
        public virtual void Execute(IJobExecutionContext context)
        {
            try
            {
                //任务处理过程
                System.Threading.Thread.Sleep(10);
                Console.WriteLine("SimpleJob");
                context.Result = "true";

                //QMAPP.ServicesAgent.ServiceAgent sa=new ServiceUtil().GetServiceAgent();
                //sa.InvokeServiceFunction("fn_1");
            }
            catch (Exception ex)
            {
                context.Result = "false";
                throw;
            }
        }
    }
}