Source code for bspump.abc.sink

from .processor import ProcessorBase


[docs]class Sink(ProcessorBase): """ Sink is basically a processor. It takes an event sends it to a database where it is stored. | """ pass