Pheanstalk
Interfaces, Classes and Traits
- Command
- A command to be sent to the beanstalkd server, and response processing logic.
- Response
- A response from the beanstalkd server.
- ResponseParser
- A parser for response data sent from the beanstalkd server.
- Socket
- A mockable wrapper around PHP "socket" or "file pointer" access.
- AbstractCommand
- Common functionality for Command implementations.
- BuryCommand
- The 'bury' command.
- DeleteCommand
- The 'delete' command.
- IgnoreCommand
- The 'ignore' command.
- KickCommand
- The 'kick' command.
- KickJobCommand
- The 'kick-job' command.
- ListTubesCommand
- The 'list-tubes' command.
- ListTubesWatchedCommand
- The 'list-tubes-watched' command.
- ListTubeUsedCommand
- The 'list-tube-used' command.
- PauseTubeCommand
- The 'pause-tube' command.
- PeekCommand
- The 'peek', 'peek-ready', 'peek-delayed' and 'peek-buried' commands.
- PutCommand
- The 'put' command.
- ReleaseCommand
- The 'release' command.
- ReserveCommand
- The 'reserve' command.
- StatsCommand
- The 'stats' command.
- StatsJobCommand
- The 'stats-job' command.
- StatsTubeCommand
- The 'stats-tube' command.
- TouchCommand
- The 'touch' command.
- UseCommand
- The 'use' command.
- WatchCommand
- The 'watch' command.
- Connection
- A connection to a beanstalkd server.
- ClientException
- An exception originating from the beanstalkd client.
- CommandException
- An exception relating to a Command.
- ConnectionException
- An exception relating to the client connection to the beanstalkd server.
- ServerBadFormatException
- An exception originating as a beanstalkd server error.
- ServerDrainingException
- An exception originating as a beanstalkd server error.
- ServerException
- An exception originating as a beanstalkd server error.
- ServerInternalErrorException
- An exception originating as a beanstalkd server error.
- ServerOutOfMemoryException
- An exception originating as a beanstalkd server error.
- ServerUnknownCommandException
- An exception originating as a beanstalkd server error.
- SocketException
- An exception relating to the connection socket.
- Exception
- An exception originating from the Pheanstalk package.
- Job
- A job in a beanstalkd server.
- Pheanstalk
- Pheanstalk is a PHP client for the beanstalkd workqueue.
- ArrayResponse
- A response with an ArrayObject interface to key => value data.
- NativeSocket
- A Socket implementation around a fsockopen() stream.
- StreamFunctions
- Wrapper around PHP stream functions.
- WriteHistory
- A limited history of recent socket write length/success.
- YamlResponseParser
- A response parser for commands that return a subset of YAML.