Package datomic
Interface Log
public interface Log
Implements the Log API.
- Since:
- 0.8.4122
-
Field Summary
-
Method Summary
-
Field Details
-
T
-
DATA
-
-
Method Details
-
txRange
Returns a range of transactions in log, starting at start, or from beginning if start is null, and ending before end, or through end of log if end is null. Each transaction is a map with the following keys:T
the T point of the transaction DATA
a Collection of the Datoms asserted/retracted by the transaction - Parameters:
startT
- a time-point or nullendT
- a time-point or null- Returns:
- an Iterable of transaction maps occurring between start (inclusive) and end (exclusive)
-