public void StartWriterJob()
 {
     if (job == null)
     {
         job           = new AlbumArtWriterJob(this);
         job.Finished += delegate {
             job    = null;
             forced = false;
         };
         job.Start();
     }
 }
 public void StartWriterJob()
 {
     if (job == null) {
         job = new AlbumArtWriterJob (this);
         job.Finished += delegate {
             job = null;
             forced = false;
         };
         job.Start ();
     }
 }