/**
  * @since 2.1
  *
  * @param string $jobName
  *
  * @return integer
  */
 public function estimateJobCountFor($jobName)
 {
     $count = $this->connection->estimateRowCount($this->tablename, '*', array('job_cmd' => $jobName));
     return (int) $count;
 }