����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 216.73.216.168 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/builderbox/www/vendor/pda/pheanstalk/src/Contract/ |
Upload File : |
<?php namespace Pheanstalk\Contract; /** * A command to be sent to the beanstalkd server, and response processing logic. * * @author Paul Annesley */ interface CommandInterface { 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. */ public function getCommandLine(): string; /** * Whether the command is followed by data. */ public function hasData(): bool; /** * The binary data to follow the command. */ public function getData(): string; /** * The length of the binary data in bytes. */ public function getDataLength(): int; /** * The response parser for the command. */ public function getResponseParser(): ResponseParserInterface; }