in reply to POE::IRC, Where was that tall building again?

Taking a wild guess here, but I think that you are using the WHO query for some sort of identification purposes?

Either way, if it is a set of methods for querying the 'state' of channels PoCo-IRC is on, user information, etc. then you might want to look at POE::Component::IRC::State, which is a sub-class of POE::Component::IRC that automagically gathers state information and provides a plethora of methods for querying this info.

It is a drop-in replacement for POE::Component::IRC, so literally all that is required to make use of it in your script is change POE::Component::IRC to POE::Component::IRC::State.

  • Comment on Re: POE::IRC, Where was that tall building again?

Replies are listed 'Best First'.
Re^2: POE::IRC, Where was that tall building again?
by Anonymous Monk on Jul 16, 2008 at 16:31 UTC
    I saw ::State and I didn't think it did what I needed but on second glance I'm going to give it a whirl. It looks like it will do most of the difficult song and dance I'm looking for and thanks to everyone else for the great feedback, I appreciate it.