scala.xml.pull

trait ProducerConsumerIterator

[source: scala/xml/pull/ProducerConsumerIterator.scala]

trait ProducerConsumerIterator[T >: Null]
extends Iterator[T]
Direct Known Subclasses:
XMLEventReader

Value Summary
abstract val EndOfStream : T
val MaxQueueSize : Int
Method Summary
def available : Boolean
def hasNext : Boolean
Does this iterator provide another element?
def interruptibly [T](body : => T) : Option[T]
def next : T
Returns the next element of this iterator.
def produce (x : T) : Unit
Methods inherited from Iterator
take, drop, slice, map, ++, flatMap, filter, takeWhile, partition, dropWhile, zip, padTo, zipWithIndex, zipAll, foreach, forall, exists, contains, find, indexWhere, indexOf, foldLeft, foldRight, /:, :\, reduceLeft, reduceRight, reduceLeftOpt, reduceRightOpt, buffered, length, duplicate, patch, copyToArray, copyToArray, copyToArray, copyToBuffer, toList, toStream, toSequence, mkString, mkString, mkString, addString, addString, addString, toString, append, findIndexOf, collect, counted, readInto, readInto, readInto
Methods inherited from AnyRef
getClass, hashCode, equals, clone, notify, notifyAll, wait, wait, wait, finalize, ==, !=, eq, ne, synchronized
Methods inherited from Any
==, !=, isInstanceOf, asInstanceOf
Value Details
abstract val EndOfStream : T

val MaxQueueSize : Int

Method Details
def interruptibly[T](body : => T) : Option[T]

def produce(x : T) : Unit

def hasNext : Boolean
Does this iterator provide another element?
Overrides
Iterator.hasNext

def next : T
Returns the next element of this iterator.
Overrides
Iterator.next

def available : Boolean