Kamaelia docs : Kamaelia.Util.LossyConnector

Lossy connections between components

A component that passes on any data it receives, but will throw it away if the next component's inbox is unable to accept new items.

Example Usage

Using a lossy connector to drop excess data::

src = fastProducer().activate() lsy = LossyConnector().activate() dst = slowConsumer().activate()

src.link( (src,"outbox"), (lsy,"inbox") ) src.link( (lsy,"outbox"), (dst,"inbox"), pipewidth=1 )

The outbox of the lossy connector is joined to a linkage that can buffer a maximum of one item. Once full, the lossy connector causes items to be dropped.

How does it work?

This component receives data on its "inbox" inbox and immediately sends it on out of its "oubox" outbox.

If the act of sending the data causes a noSpaceInBox exception, then it is caught, and the data that it was trying to send is simply discarded.

I a producerFinished or shutdownMicroprocess message is received on the component's "control" inbox, then the message is forwarded on out of its "signal" outbox and the component then immediately terminates.


Kamaelia.Util.LossyConnector.LossyConnector

class LossyConnector(Axon.Component.component)

LossyConnector() -> new LossyConnector component

Component that forwards data from inbox to outbox, but discards data if destination is full.

Inboxes

  • control : Shutdown signalling
  • inbox : Data to be passed on

Outboxes

  • outbox : Data received on 'inbox' inbox
  • signal : Shutdown signalling

Methods defined here

mainBody(self)

Main loop body.

Feedback

Got a problem with the documentation? Something unclear that could be clearer? Want to help improve it? Constructive criticism is very welcome - especially if you can suggest a better rewording!

Please leave you feedback here in reply to the documentation thread in the Kamaelia blog.

-- Automatic documentation generator, 19 Oct 2008 at 14:29:09 UTC/GMT

This is a page from the Kamaelia website. You can find the original here: