*/ interface DeliveryExecutionCounterInterface { const SERVICE_ID = 'taoDelivery/DeliveryExecutionCounterService'; /** * Get number of delivery executions of given status. * @param $statusUri * @return integer */ public function count($statusUri); /** * Recalculate amount of delivery executions of given status * @param $statusUri */ public function refresh($statusUri); }