Packages

t

io.delta.storage

CloseableIterator

trait CloseableIterator[T] extends Iterator[T] with Closeable

An iterator that may contain resources which should be released after use. Users of CloseableIterator are responsible for closing the iterator if they are done with it.

Since

1.0.0

Linear Supertypes
Closeable, AutoCloseable, Iterator[T], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CloseableIterator
  2. Closeable
  3. AutoCloseable
  4. Iterator
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    Closeable → AutoCloseable
    Annotations
    @throws( classOf[java.io.IOException] )
  2. abstract def hasNext(): Boolean
    Definition Classes
    Iterator
  3. abstract def next(): T
    Definition Classes
    Iterator

Concrete Value Members

  1. def forEachRemaining(arg0: Consumer[_ >: T]): Unit
    Definition Classes
    Iterator
  2. def remove(): Unit
    Definition Classes
    Iterator