xprt64/cqrs-es

View on GitHub
src/Dudulina/ProgressReporting/TaskProgressReporter.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * Copyright (c) 2017 Constantin Galbenu <xprt64@gmail.com>
 */

namespace Dudulina\ProgressReporting;


interface TaskProgressReporter
{
    public function reportProgressUpdate(int $currentStep, int $steps, float $speedInItemsPerSec, float $etaInSeconds);
}