@@ -35,23 +35,23 @@ protected Op getOp() {
35
35
* Create a new insert operation of a node with the given id, timestamp, properties, metadata and labels.
36
36
*
37
37
* @param id The id of the element.
38
- * @param tsMS The timestamp of the event in milliseconds .
38
+ * @param tsNS The timestamp of the event in nanoseconds .
39
39
* @param properties The properties of the element.
40
40
* @param metadata The metadata of the element.
41
41
* @param labels The labels of the element.
42
42
* @param sourceTsMS The timestamp of the event in the source database in milliseconds.
43
43
* @param sequenceNumber The sequence number of the event in the source database.
44
44
*/
45
- public SourceInsert (String id , long tsMS , JsonNode properties , Map <String , Object > metadata , List <String > labels , long sourceTsMS , long sequenceNumber ) {
46
- super (id , tsMS , properties , metadata , labels , sourceTsMS , sequenceNumber );
45
+ public SourceInsert (String id , long tsNS , JsonNode properties , Map <String , Object > metadata , List <String > labels , long sourceTsMS , long sequenceNumber ) {
46
+ super (id , tsNS , properties , metadata , labels , sourceTsMS , sequenceNumber );
47
47
48
48
}
49
49
50
50
/**
51
51
* Create a new insert operation of a relation with the given id, timestamp, properties, metadata, labels, startId and endId.
52
52
*
53
53
* @param id The id of the element.
54
- * @param tsMS The timestamp of the event in milliseconds .
54
+ * @param tsNS The timestamp of the event in nanoseconds .
55
55
* @param properties The properties of the element.
56
56
* @param metadata The metadata of the element.
57
57
* @param labels The labels of the element.
@@ -60,7 +60,7 @@ public SourceInsert(String id, long tsMS, JsonNode properties, Map<String, Objec
60
60
* @param startId The id of the start node.
61
61
* @param endId The id of the end node.
62
62
*/
63
- public SourceInsert (String id , long tsMS , JsonNode properties , Map <String , Object > metadata , List <String > labels , long sourceTsMS , long sequenceNumber , String startId , String endId ) {
64
- super (id , tsMS , properties , metadata , labels , sourceTsMS , sequenceNumber , startId , endId );
63
+ public SourceInsert (String id , long tsNS , JsonNode properties , Map <String , Object > metadata , List <String > labels , long sourceTsMS , long sequenceNumber , String startId , String endId ) {
64
+ super (id , tsNS , properties , metadata , labels , sourceTsMS , sequenceNumber , startId , endId );
65
65
}
66
66
}
0 commit comments