/// <summary> /// Cancel the specified job. /// </summary> /// <param name="job">Job whose execution is cancelled.</param> /// <returns>True if the cancellation succeeded.</returns> public override bool CancelJob(DryadLinqJobSummary job) { AzureUtils.KillJob(this.config.AccountName, this.config.AccountKey, this.config.Container, job.ClusterJobId); return(true); }