The SimpleSink class is an abstract class which implements
'null' functionality for most of the administrative methods
of SinkIF. This class can be extended to implement simple SinkIF's
which don't require most of the special behavior of the fully general
case.
author: Matt Welsh See Also:seda.sandStorm.api.SinkIF
Simply calls enqueue() on each item in the array. Note that this
behavior breaks the property that enqueue_many()
should be an "all or nothing" operation, since enqueue() might
reject some items but not others. Don't use SimpleSink if this is
going to be a problem.