Cursor

com.outr.arango.core.Cursor
case class Cursor[T](id: String, nextBatchId: String, arangoCursor: ArangoCursor[Json], converter: Json => T)

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Concrete methods

def as[R](converter: Json => R): Cursor[R]
def iterator: Iterator[T]
def jsonIterator: Iterator[Json]
def jsonStream(chunkSize: Int): Stream[IO, Json]
def stream(chunkSize: Int): Stream[IO, T]

Inherited methods

def productElementNames: Iterator[String]

Attributes

Inherited from:
Product
def productIterator: Iterator[Any]

Attributes

Inherited from:
Product

Concrete fields

lazy val count: Long
lazy val fullCount: Long
lazy val toList: List[T]