File "Pausable.php"

Full Path: /var/www/drive/laravel/horizon/src/Contracts/Pausable.php
File size: 291 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Laravel\Horizon\Contracts;

interface Pausable
{
    /**
     * Pause the process.
     *
     * @return void
     */
    public function pause();

    /**
     * Instruct the process to continue working.
     *
     * @return void
     */
    public function continue();
}