com.outr.arango.queue

Type members

Classlikes

case class CollectionQueue[D <: Document[D]](batchSize: Int, collection: DocumentCollection[D], insert: Vector[D], upsert: Vector[D], delete: Vector[D])
case class DBQueue(batchSize: Int, map: Map[DocumentCollection[_], CollectionQueue[_]], inserts: Int, upserts: Int, deletes: Int)

Useful for batch operations where the batch may overflow. This will create multiple batches and flush as they fill up. Call finish() at the end to make sure all unflushed batches get processed.

Useful for batch operations where the batch may overflow. This will create multiple batches and flush as they fill up. Call finish() at the end to make sure all unflushed batches get processed.

Value parameters:
batchSize

the maximum number of records per batch (defaults to 1000)