public function FBAutopost::setRetry in Facebook Autopost 7
Sets the retry value.
Parameters
boolean $retry: Boolean indicating if the publication in the timeline must be retried.
Return value
FBAutopost Returns itself
File
- class/
FBAutopost.php, line 484
Class
- FBAutopost
- API class to handle common actions when autoposting This class uses FBAutopostException for error handling. Severity is passed resusing watchdog severity (See: http://api.drupal.org/api/drupal/includes%21bootstrap.inc/function/watch...)
Code
public function setRetry($retry) {
$this->retry = $retry;
return $this;
}