Class PipedTriplesStream

java.lang.Object
org.apache.jena.riot.lang.PipedRDFStream<Triple>
org.apache.jena.riot.lang.PipedTriplesStream
All Implemented Interfaces:
StreamRDF

@Deprecated public class PipedTriplesStream extends PipedRDFStream<Triple> implements StreamRDF
Deprecated.
To be removed - use AsyncParser.
Implementation of a producer class that sends Triples; must be connected to a PipedRDFIterator<Triple>.
  • Constructor Details

    • PipedTriplesStream

      public PipedTriplesStream(PipedRDFIterator<Triple> sink)
      Deprecated.
      Creates a piped triples stream connected to the specified piped RDF iterator. Triples written to this stream will then be available as input from sink.
      Parameters:
      sink - The piped RDF iterator to connect to.
  • Method Details

    • triple

      public void triple(Triple triple)
      Deprecated.
      Description copied from interface: StreamRDF
      Triple emitted
      Specified by:
      triple in interface StreamRDF
    • quad

      public void quad(Quad quad)
      Deprecated.
      Description copied from interface: StreamRDF
      Quad emitted
      Specified by:
      quad in interface StreamRDF