Interface AsyncRevObjectQueue

  • All Superinterfaces:
    AsyncOperation

    public interface AsyncRevObjectQueue
    extends AsyncOperation
    Queue to lookup and parse objects asynchronously. A queue may perform background lookup of objects and supply them (possibly out-of-order) to the application.
    • Method Detail

      • next

        RevObject next()
                throws MissingObjectException,
                       java.io.IOException
        Obtain the next object.
        Returns:
        the object; null if there are no more objects remaining.
        Throws:
        MissingObjectException - the object does not exist. There may be more objects remaining in the iteration, the application should call next() again.
        java.io.IOException - the object store cannot be accessed.