Class AtomixIterator<T>

  • All Implemented Interfaces:
    org.onosproject.store.service.AsyncIterator<T>

    public class AtomixIterator<T>
    extends java.lang.Object
    implements org.onosproject.store.service.AsyncIterator<T>
    Atomix asynchronous iterator.
    • Constructor Summary

      Constructors 
      Constructor Description
      AtomixIterator​(io.atomix.core.iterator.AsyncIterator<T> atomixIterator)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.concurrent.CompletableFuture<java.lang.Boolean> hasNext()  
      java.util.concurrent.CompletableFuture<T> next()  
      • Methods inherited from class java.lang.Object

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

      • AtomixIterator

        public AtomixIterator​(io.atomix.core.iterator.AsyncIterator<T> atomixIterator)
    • Method Detail

      • hasNext

        public java.util.concurrent.CompletableFuture<java.lang.Boolean> hasNext()
        Specified by:
        hasNext in interface org.onosproject.store.service.AsyncIterator<T>
      • next

        public java.util.concurrent.CompletableFuture<T> next()
        Specified by:
        next in interface org.onosproject.store.service.AsyncIterator<T>