コード例 #1
0
ファイル: GearmanClient.cs プロジェクト: issacg/GearmanSharp
        protected void onJobWarning(GearmanJobData e)
        {
            EventHandler <GearmanJobData> handler = JobWarning;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #2
0
ファイル: GearmanClient.cs プロジェクト: issacg/GearmanSharp
        protected void onJobException(GearmanJobData e)
        {
            EventHandler <GearmanJobData> handler = JobException;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #3
0
ファイル: GearmanClient.cs プロジェクト: issacg/GearmanSharp
        protected void onJobCompleted(GearmanJobData e)
        {
            EventHandler <GearmanJobData> handler = JobCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
コード例 #4
0
ファイル: Program.cs プロジェクト: issacg/GearmanSharp
 private static void onComplete(Object e, GearmanJobData data)
 {
     Console.WriteLine("Job {0} complete!  Result: {1}", data.JobHandle, Encoding.UTF8.GetString(data.Data));
 }
コード例 #5
0
 protected void onJobWarning(GearmanJobData e)
 {
     EventHandler<GearmanJobData> handler = JobWarning;
     if (handler != null)
     {
         handler(this, e);
     }
 }
コード例 #6
0
 protected void onJobException(GearmanJobData e)
 {
     EventHandler<GearmanJobData> handler = JobException;
     if (handler != null)
     {
         handler(this, e);
     }
 }
コード例 #7
0
 protected void onJobCompleted(GearmanJobData e)
 {
     EventHandler<GearmanJobData> handler = JobCompleted;
     if (handler != null)
     {
         handler(this, e);
     }
 }