The chat server recipe in POE's cookbook contains a very simple example of publish/subscribe within a single process. I recommend POE::Component::IKC if you want to publish and subscribe to services between separate processes.

As I see it, the difference between events and messages is one of scale. Events are essentially messages telling a program that some fairly small thing has occurred. At POE's lowest levels, it generates events to indicate when sockets are ready to be read from or written to. It implements multiple timers with notification as events. It does a bunch of other things, but they're outside the scope of this reply. :)

Messages on the other hand are high-level notifications. For example, POE::Component::Server::SOAP notifies programs when entire SOAP requests have arrived. It accepts SOAP responses and handles the gory details of shipping them back to clients.

-- Rocco Caputo - http://poe.perl.org/


In reply to Re: POE: Events and Messages by rcaputo
in thread POE: Events and Messages by johnnywang

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.