Class AbstractQueryResultHandler<T>

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void end()
      Signal that query processing has completed
      void links​(java.util.List<java.lang.String> theLinks)
      Handle the set of links from the result
      void start()
      Signal that query processing is starting
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • AbstractQueryResultHandler

        public AbstractQueryResultHandler()
    • Method Detail

      • links

        public void links​(@Nonnull
                          java.util.List<java.lang.String> theLinks)
        Handle the set of links from the result
        Specified by:
        links in interface QueryResultHandler<T>
        Parameters:
        theLinks - The links
        See Also:
        "link"
      • start

        public void start()
        Signal that query processing is starting
        Specified by:
        start in interface QueryResultHandler<T>
      • end

        public void end()
        Signal that query processing has completed
        Specified by:
        end in interface QueryResultHandler<T>