public function SalesforceMapping::getNextPushTime in Salesforce Suite 5.0.x
Same name and namespace in other branches
- 8.4 modules/salesforce_mapping/src/Entity/SalesforceMapping.php \Drupal\salesforce_mapping\Entity\SalesforceMapping::getNextPushTime()
- 8.3 modules/salesforce_mapping/src/Entity/SalesforceMapping.php \Drupal\salesforce_mapping\Entity\SalesforceMapping::getNextPushTime()
Get the timestamp when the next push should be processed for this mapping.
Return value
int The next push time.
Overrides SalesforceMappingInterface::getNextPushTime
File
- modules/
salesforce_mapping/ src/ Entity/ SalesforceMapping.php, line 652
Class
- SalesforceMapping
- Defines a Salesforce Mapping configuration entity class.
Namespace
Drupal\salesforce_mapping\EntityCode
public function getNextPushTime() {
return $this->push_info['last_timestamp'] + $this->push_frequency;
}