-
-
Save jamestung1990/ed75b9887898fe936c0a202c1f23b71d to your computer and use it in GitHub Desktop.
scala wrapper for hadoop remote iterator
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| case class RemoteIteratorWrapper[T](underlying: org.apache.hadoop.fs.RemoteIterator[T]) extends scala.collection.AbstractIterator[T] with scala.collection.Iterator[T] { | |
| def hasNext = underlying.hasNext | |
| def next() = underlying.next() | |
| } | |
| object Conversions { | |
| implicit def remoteIterator2ScalaIterator[T](underlying: org.apache.hadoop.fs.RemoteIterator[T]) : scala.collection.Iterator[T] = RemoteIteratorWrapper[T](underlying) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment