| Package | Description |
|---|---|
| de.caluga.morphium.query |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultMorphiumIterator<T>
This class was introduced with V2.2.21BETA7.
|
class |
PrefetchingMorphiumIterator<T>
User: Stephan Bösebeck
Date: 23.11.12
Time: 11:40
This implementation of the Iterable Interface maxe paging on db side easier.
|
| Modifier and Type | Method and Description |
|---|---|
MorphiumIterator<T> |
QueryImpl.asCustomIterable(int windowSize,
Class<? extends MorphiumIterator<T>> it) |
MorphiumIterator<T> |
Query.asCustomIterable(int windowSize,
Class<? extends MorphiumIterator<T>> it) |
MorphiumIterator<T> |
QueryImpl.asIterable() |
MorphiumIterator<T> |
Query.asIterable()
create an iterator / iterable for this query, default windowSize (10), prefetch windows 1
|
MorphiumIterator<T> |
QueryImpl.asIterable(int windowSize) |
MorphiumIterator<T> |
Query.asIterable(int windowSize)
create an iterator / iterable for this query, sets window size (how many objects should be read from DB)
prefetch number is 1 in this case
|
MorphiumIterator<T> |
QueryImpl.asIterable(int windowSize,
int prefixWindows) |
MorphiumIterator<T> |
Query.asIterable(int windowSize,
int prefixWindows)
create an iterator / iterable for this query, sets window size (how many entities are read en block) and how many windows of this size will be prefechted...
|
| Modifier and Type | Method and Description |
|---|---|
MorphiumIterator<T> |
QueryImpl.asCustomIterable(int windowSize,
Class<? extends MorphiumIterator<T>> it) |
MorphiumIterator<T> |
Query.asCustomIterable(int windowSize,
Class<? extends MorphiumIterator<T>> it) |
Copyright © 2015. All rights reserved.