You are here

public function BackgroundProcess::setStartTime in Background Process 7.2

Set start time

Parameters

$start_stamp: Unix timestamp (with microseconds) of start time

File

./background_process.inc, line 495
External API short overview

Class

BackgroundProcess
@file

Code

public function setStartTime($start_stamp) {
  $this
    ->ensureProcess();
  $this->dirty['start_stamp'] = $this->start_stamp = $start_stamp;
  return $this;
}