chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace Mautic\CampaignBundle\Executioner\Result;
class Counter
{
/**
* @param int $eventCount
* @param int $evaluated
* @param int $executed
* @param int $totalEvaluated
* @param int $totalExecuted
* @param int $totalScheduled
*/
public function __construct(
private $eventCount = 0,
private $evaluated = 0,
private $executed = 0,
private $totalEvaluated = 0,
private $totalExecuted = 0,
private $totalScheduled = 0
) {
}
/**
* @return int
*/
public function getEventCount()
{
return $this->eventCount;
}
/**
* @param int $step
*/
public function advanceEventCount($step = 1): void
{
$this->eventCount += $step;
}
/**
* @return int
*/
public function getEvaluated()
{
return $this->evaluated;
}
/**
* @param int $step
*/
public function advanceEvaluated($step = 1): void
{
$this->evaluated += $step;
$this->totalEvaluated += $step;
}
/**
* @return int
*/
public function getExecuted()
{
return $this->executed;
}
/**
* @param int $step
*/
public function advanceExecuted($step = 1): void
{
$this->executed += $step;
$this->totalExecuted += $step;
}
/**
* Includes all child events (conditions, etc) evaluated.
*
* @return int
*/
public function getTotalEvaluated()
{
return $this->totalEvaluated;
}
/**
* @param int $step
*/
public function advanceTotalEvaluated($step = 1): void
{
$this->totalEvaluated += $step;
}
/**
* Includes all child events (conditions, etc) executed.
*
* @return int
*/
public function getTotalExecuted()
{
return $this->totalExecuted;
}
/**
* @param int $step
*/
public function advanceTotalExecuted($step = 1): void
{
$this->totalExecuted += $step;
}
/**
* @return int
*/
public function getTotalScheduled()
{
return $this->totalScheduled;
}
/**
* @param int $step
*/
public function advanceTotalScheduled($step = 1): void
{
$this->totalScheduled += $step;
}
}