Package net.fortytwo.flow.rdf

Examples of net.fortytwo.flow.rdf.SynchronizedRDFSink


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

    public SynchronizedRDFDiffSink(final RDFDiffSink sink, final Object mutex) {
        addSink = new SynchronizedRDFSink(sink.adderSink(), mutex);
        subSink = new SynchronizedRDFSink(sink.subtractorSink(), mutex);

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

TOP

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

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.