Search results for "module:POE::Filter::Block"
POE::Filter::Block - translate data between streams and blocks
POE::Filter::Block translates data between serial streams and blocks. It can handle fixed-length and length-prepended blocks, and it may be extended to handle other block types. Fixed-length blocks are used when Block's constructor is called with a B...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Filter::RecordBlock - translate between discrete records and blocks of them
On input, POE::Filter::RecordBlock translates a stream of discrete items into a "block" of them. It does this by collecting items until it has BlockSize of them, then returning the lot of them in an array reference. On output, this module flattens ar...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE - portable multitasking and networking framework for any event loop
POE is a framework for cooperative, event driven multitasking and networking in Perl. Other languages have similar frameworks. Python has Twisted. TCL has "the event loop". POE provides a unified interface for several other event loops, including sel...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Filter - protocol abstractions for POE::Wheel and standalone use
POE::Filter objects plug into the wheels and define how the data will be serialized for writing and parsed after reading. POE::Wheel objects are responsible for moving data, and POE::Filter objects define how the data should look. POE::Filter objects...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Wheel::Run - portably run blocking code and programs in subprocesses
POE::Wheel::Run executes a program or block of code in a subprocess, created the usual way: using fork(). The parent process may exchange information with the child over the child's STDIN, STDOUT and STDERR filehandles. In the parent process, the POE...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Filter::HTTPD - parse simple HTTP requests, and serialize HTTP::Response
POE::Filter::HTTPD interprets input streams as HTTP 0.9, 1.0 or 1.1 requests. It returns a HTTP::Request objects upon successfully parsing a request. On failure, it returns an HTTP::Response object describing the failure. The intention is that applic...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Filter::Stackable - combine multiple POE::Filter objects
POE::Filter::Stackable combines multiple filters together in such a way that they appear to be a single filter. All the usual POE::Filter methods work, but data is secretly passed through the stacked filters before it is returned. POE::Wheel objects ...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Wheel::ReadWrite - non-blocking buffered I/O mix-in for POE::Session
POE::Wheel::ReadWrite encapsulates a common design pattern: dealing with buffered I/O in a non-blocking, event driven fashion. The pattern goes something like this: Given a filehandle, watch it for incoming data. When notified of incoming data, read ...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Filter::Reference - freeze and thaw arbitrary Perl data
POE::Filter::Reference allows programs to send and receive arbitrary Perl data structures without worrying about a line protocol. Its put() method serializes Perl data into a byte stream suitable for transmission. get_one() parses the data structures...
BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC
POE::Component::Server::HTTP - Foundation of a POE HTTP Daemon
POE::Component::Server::HTTP (PoCo::HTTPD) is a framework for building custom HTTP servers based on POE. It is loosely modeled on the ideas of apache and the mod_perl/Apache module. It is built alot on work done by Gisle Aas on HTTP::* modules and th...
RCLAMP/POE-Component-Server-HTTP-0.09 - 23 May 2006 20:47:37 UTC
POE::Component::IRC::Plugin::DCC - A PoCo-IRC plugin providing support for DCC transfers
This plugin provides the IRC commands needed to make use of DCC. It is used internally by POE::Component::IRC so there's no need to add it manually....
BINGOS/POE-Component-IRC-6.93 - 15 Jun 2021 18:29:10 UTC
POE::Component::SSLify::NonBlock - Nonblocking SSL for POE with client certificate verification.
This component represents a common way of using ssl on a server, which needs to ensure that no client can block the whole server. Further it allows to verificate client certificates. Non-Blocking needed, especially on client certificate verification ...
PRIVI/POE-Component-SSLify-NonBlock-0.41 - 15 Jun 2010 18:09:52 UTC
POE::Component::Server::SimpleHTTP - Perl extension to serve HTTP requests in POE.
This module makes serving up HTTP requests a breeze in POE. The hardest thing to understand in this module is the HANDLERS. That's it! The standard way to use this module is to do this: use POE; use POE::Component::Server::SimpleHTTP; POE::Component:...
BINGOS/POE-Component-Server-SimpleHTTP-2.30 - 08 May 2023 11:11:49 UTC