T - the type of data being passedpublic interface Sink<T>
Sink may be transformed or passed along verbatim
to downstream components, or even thrown away;
a Sink is a black box with respect to upstream components passing data into it.void put(T t) throws RippleException
Sinkt - the data item being passedRippleException - if a data handling error occorsCopyright © 2007-2012 fortytwo.net. All Rights Reserved.