. */ /** * Send a raw PuSH atom update from our internal hub. * @package Hub * @author Brion Vibber */ class HubOutQueueHandler extends QueueHandler { function transport() { return 'hubout'; } function handle($data) { $sub = $data['sub']; $atom = $data['atom']; $retries = $data['retries']; assert($sub instanceof HubSub); assert(is_string($atom)); try { $sub->push($atom); } catch (Exception $e) { $retries--; $msg = "Failed PuSH to $sub->callback for $sub->topic: " . $e->getMessage(); if ($retries > 0) { common_log(LOG_ERR, "$msg; scheduling for $retries more tries"); // @fixme when we have infrastructure to schedule a retry // after a delay, use it. $sub->distribute($atom, $retries); } else { common_log(LOG_ERR, "$msg; discarding"); } } return true; } }