
IO::EventMux::Dump - A transparent subclass of IO::EventMux that dumps input/output activity to STDOUT

use IO::EventMux::Dump;
my $mux = IO::EventMux::Dump->new();
$mux->add($my_fh);
while (1) {
my $event = $mux->mux();
# ... do something with $event->{type} and $event->{fh}
}
Wrapper for send call that will write filehandle fileno and data being send
Wrapper for mux call that will write filehandle fileno and data from "read" events.

José Micó <jose.mico@gmail.com>

Copyright 2009: José Micó
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.