T - timeline item typepublic interface Timeline<T>
| Modifier and Type | Method and Description |
|---|---|
void |
next(Long minPosition,
<any> cb)
Loads items with position greater than (above) minPosition.
|
void |
previous(Long maxPosition,
<any> cb)
Loads items with position less than (below) maxId.
|
void next(Long minPosition,
<any> cb)
minPosition - minimum position of the items to load (exclusive).cb - callback.void previous(Long maxPosition,
<any> cb)
maxPosition - maximum position of the items to load (exclusive).cb - callback.