Package net.fortytwo.flow.rdf

Examples of net.fortytwo.flow.rdf.RDFTee


    private final DiffSink<Statement> stSink;
    private final DiffSink<Namespace> nsSink;
    private final DiffSink<String> cmtSink;

    public RDFDiffTee(final RDFDiffSink sinkA, final RDFDiffSink sinkB) {
        adderTee = new RDFTee(sinkA.adderSink(), sinkB.adderSink());
        subtractorTee = new RDFTee(sinkA.subtractorSink(), sinkB.subtractorSink());

        stSink = new DiffSink<Statement>() {
            public Sink<Statement> getPlus() {
                return adderTee.statementSink();
            }
View Full Code Here

TOP

Related Classes of net.fortytwo.flow.rdf.RDFTee

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.