/**
  * @return null
  */
 public function pushActionResultInfoWithoutPulsarCorrectionBehavior()
 {
     $actionResult = new ActionResultingPushDto();
     $actionResult->setActionCompleteCorrectly(true);
     $this->pushActionResultInfo($actionResult);
     return null;
 }
Exemple #2
0
 /**
  * @param ActionResultingPushDto $pushDto
  * @return null
  */
 protected function logSleepForPeriod(ActionResultingPushDto $pushDto)
 {
     $this->logger->info("Initiate sleep for period (microseconds): " . $pushDto->getSleepForPeriod()->getSleepPeriod() . " | Error reason: " . $pushDto->getErrorReason() . " | Error message: " . $pushDto->getErrorMessage());
     return null;
 }