public static interface ChronoResource.TimeMachine
ChronoResource.TimeMachine controls the point in time at which data is read in an associated ChronoResource.| Modifier and Type | Method and Description |
|---|---|
void |
jumpTo(java.util.Date date)
Performs a time jump with the attached
ChronoResource to the specified date. |
void |
jumpTo(long timestamp)
Performs a time jump with the attached
ChronoResource to the specified timestamp. |
void |
jumpToPresent()
Performs a time jump with the attached
ChronoResource to the latest commit (present). |
void jumpTo(long timestamp)
ChronoResource to the specified timestamp.
Please note that the timestamp is subject to the following conditions:
timestamp - The timestamp to jump to. Must match the criteria outlined above.jumpTo(Date)void jumpTo(java.util.Date date)
ChronoResource to the specified date.
Please note that the date is subject to the following conditions:
null.
date - The date to jump to. Must match the criteria outlined above.void jumpToPresent()
ChronoResource to the latest commit (present).
Use this method to see the changes made by other participants to the repository since the creation of the
attached ChronoResource.