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

net.fortytwo.flow.diff.DiffSink Maven / Gradle / Ivy

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

import net.fortytwo.flow.Sink;

/**
 * A pair of sinks, one for "added" data items and another for "removed" data items
 *
 * @author Joshua Shinavier (http://fortytwo.net)
 */
public interface DiffSink
{
    /**
     * @return the sink for "added" data items
     */
    Sink getPlus();

    /**
     * @return the sink for "removed" data items
     */
    Sink getMinus();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy