Class BackgroundGraphResult

    • Field Detail

      • parser

        private final RDFParser parser
        Deprecated.
      • charset

        private final java.nio.charset.Charset charset
        Deprecated.
      • in

        private final java.io.InputStream in
        Deprecated.
      • baseURI

        private final java.lang.String baseURI
        Deprecated.
      • namespacesReady

        private final java.util.concurrent.CountDownLatch namespacesReady
        Deprecated.
      • finishedParsing

        private final java.util.concurrent.CountDownLatch finishedParsing
        Deprecated.
      • namespaces

        private final java.util.Map<java.lang.String,​java.lang.String> namespaces
        Deprecated.
    • Constructor Detail

      • BackgroundGraphResult

        public BackgroundGraphResult​(RDFParser parser,
                                     java.io.InputStream in,
                                     java.nio.charset.Charset charset,
                                     java.lang.String baseURI,
                                     java.lang.ref.WeakReference<?> callerRef)
        Deprecated.
      • BackgroundGraphResult

        public BackgroundGraphResult​(QueueCursor<Statement> queue,
                                     RDFParser parser,
                                     java.io.InputStream in,
                                     java.nio.charset.Charset charset,
                                     java.lang.String baseURI)
        Deprecated.
    • Method Detail

      • run

        public void run()
        Deprecated.
        Specified by:
        run in interface java.lang.Runnable
      • startRDF

        public void startRDF()
                      throws RDFHandlerException
        Deprecated.
        Description copied from interface: RDFHandler
        Signals the start of the RDF data. This method is called before any data is reported.
        Specified by:
        startRDF in interface RDFHandler
        Throws:
        RDFHandlerException - If the RDF handler has encountered an unrecoverable error.
      • getNamespaces

        public java.util.Map<java.lang.String,​java.lang.String> getNamespaces()
        Deprecated.
        Description copied from interface: GraphQueryResult
        Retrieves relevant namespaces from the query result.
        The contents of the Map may be modified after it is returned, as the initial return may be performed when the first RDF Statement is encountered.
        Specified by:
        getNamespaces in interface GraphQueryResult
        Returns:
        a Map<String, String> object containing (prefix, namespace) pairs.
      • handleComment

        public void handleComment​(java.lang.String comment)
                           throws RDFHandlerException
        Deprecated.
        Description copied from interface: RDFHandler
        Handles a comment.
        Specified by:
        handleComment in interface RDFHandler
        Parameters:
        comment - The comment.
        Throws:
        RDFHandlerException - If the RDF handler has encountered an unrecoverable error.
      • handleNamespace

        public void handleNamespace​(java.lang.String prefix,
                                    java.lang.String uri)
                             throws RDFHandlerException
        Deprecated.
        Description copied from interface: RDFHandler
        Handles a namespace declaration/definition. A namespace declaration associates a (short) prefix string with the namespace's URI. The prefix for default namespaces, which do not have an associated prefix, are represented as empty strings.
        Specified by:
        handleNamespace in interface RDFHandler
        Parameters:
        prefix - The prefix for the namespace, or an empty string in case of a default namespace.
        uri - The URI that the prefix maps to.
        Throws:
        RDFHandlerException - If the RDF handler has encountered an unrecoverable error.
      • endRDF

        public void endRDF()
                    throws RDFHandlerException
        Deprecated.
        Description copied from interface: RDFHandler
        Signals the end of the RDF data. This method is called when all data has been reported.
        Specified by:
        endRDF in interface RDFHandler
        Throws:
        RDFHandlerException - If the RDF handler has encountered an unrecoverable error.