Sindbad~EG File Manager

Current Path : /home/copmadinaarea/drive.copmadinaarea.org/vendor/pda/pheanstalk/src/
Upload File :
Current File : /home/copmadinaarea/drive.copmadinaarea.org/vendor/pda/pheanstalk/src/Command.php

<?php

namespace Pheanstalk;

/**
 * A command to be sent to the beanstalkd server, and response processing logic.
 *
 * @author  Paul Annesley
 * @package Pheanstalk
 * @license http://www.opensource.org/licenses/mit-license.php
 */
interface Command
{
    const COMMAND_PUT = 'put';
    const COMMAND_USE = 'use';
    const COMMAND_RESERVE = 'reserve';
    const COMMAND_DELETE = 'delete';
    const COMMAND_RELEASE = 'release';
    const COMMAND_BURY = 'bury';
    const COMMAND_WATCH = 'watch';
    const COMMAND_IGNORE = 'ignore';
    const COMMAND_PEEK = 'peek';
    const COMMAND_KICK = 'kick';
    const COMMAND_STATS_JOB = 'stats-job';
    const COMMAND_STATS = 'stats';
    const COMMAND_LIST_TUBES = 'list-tubes';
    const COMMAND_LIST_TUBE_USED = 'list-tube-used';
    const COMMAND_LIST_TUBES_WATCHED = 'list-tubes-watched';

    /**
     * The command line, without trailing CRLF.
     *
     * @return string
     */
    public function getCommandLine();

    /**
     * Whether the command is followed by data.
     *
     * @return bool
     */
    public function hasData();

    /**
     * The binary data to follow the command.
     *
     * @throws Exception\CommandException If command has no data
     *
     * @return string
     */
    public function getData();

    /**
     * The length of the binary data in bytes.
     *
     * @throws Exception\CommandException If command has no data
     *
     * @return int
     */
    public function getDataLength();

    /**
     * The response parser for the command.
     *
     * @return ResponseParser
     */
    public function getResponseParser();
}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists