Наследование: System.EventArgs
Пример #1
0
        protected void onJobStatus(GearmanJobStatus e)
        {
            EventHandler <GearmanJobStatus> handler = JobStatus;

            if (handler != null)
            {
                handler(this, e);
            }
        }
 protected void onJobStatus(GearmanJobStatus e)
 {
     EventHandler<GearmanJobStatus> handler = JobStatus;
     if (handler != null)
     {
         handler(this, e);
     }
 }