Hi,
Basically, I'd like to start a POE::Component::Client::TCP, then continue
sequential processing. Meanwhile the POE::Component::Client::TCP will be
handling messages coming down the wire, and my program would be doing other
stuff. I'm worried that maybe this is a threading circumstance, and I want
to avoid threading.
Sorta like:
use strict;
use POE qw(Component::Client::TCP);
POE::Component::Client::TCP->new(
...
);
$poe_kernel->run();
# Then, somehow drop past the ->run and execute something like:
$kernel->{server}->put(@data);
Thanks
Jay