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.
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.
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.
LossyConnector() -> new LossyConnector component
Component that forwards data from inbox to outbox, but discards data if destination is full.
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