SAREhub/php_component_worker

View on GitHub
src/SAREhub/Component/Worker/Command/CommandReplyInput.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace SAREhub\Component\Worker\Command;


interface CommandReplyInput {
    
    /**
     * @param bool $wait
     * @return CommandReply
     */
    public function getNext($wait = false);
    
    public function close();
}