DominionEnterprises\Mongo\QueueInterface::requeue PHP Method

requeue() public method

Requeue message to the queue. Same as ackSend() with the same message.
public requeue ( array $message, integer $earliestGet, float $priority, boolean $newTimestamp = true ) : void
$message array message received from get().
$earliestGet integer earliest unix timestamp the message can be retreived.
$priority float priority for order out of get(). 0 is higher priority than 1
$newTimestamp boolean true to give the payload a new timestamp or false to use given message timestamp
return void
    public function requeue(array $message, $earliestGet = 0, $priority = 0.0, $newTimestamp = true);