Class PipedQuadsStream

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

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

    • PipedQuadsStream

      public PipedQuadsStream(PipedRDFIterator<Quad> sink)
      Deprecated.
      Creates a piped quads stream connected to the specified piped RDF iterator. Quads 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