All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.fortytwo.flow.NullSink Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package net.fortytwo.flow;

import net.fortytwo.ripple.RippleException;

/**
 * A sink which simply throws away all data passed into it.
 * @param 
 *
 * @author Joshua Shinavier (http://fortytwo.net)
 */
public class NullSink implements Sink
{
	public void put( final T t ) throws RippleException
	{
        // Do nothing.
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy