This version was released on 2000-12-29.

Very minor optimization to Gtk read/write resuming. Replace Gtk's noisy warning about resuming unpaused handles with quiet acceptance.

Added POE::Pipe::OneWay, a portable way to create one-way pipes. It tries pipe first, then unix domain socketpair, then inet sockets before failing.

Added POE::Pipe::TwoWay, a portable way to create two-way pipes. It tries unix socketpair first, two pipes, then inet sockets before failing. It can be more frugal with filehandles than two one-way pipes.

Added Wheel::Run, an open2/open3 style wheel that lets sessions spawn off background processes. It takes care of the whole pipe, fork, exec deal.

Removed lib/TestPipe and replaced all its uses with either Pipe::OneWay or Pipe::TwoWay.

Added &many_ok to TestSetup so that lots of tests can be marked ok at once. More importantly, lots of them can be marked as skipped in one swell foop.

Added t/22_wheel_run.t to test uni- and bidirectional pipes, plus the Wheel::Run wheel which uses them.

Back to POE CHANGES.