Skip to content

Commit

Permalink
Merge pull request #1824 from BLasan/add-getters
Browse files Browse the repository at this point in the history
Add getters to the variables
  • Loading branch information
senthuran16 authored Dec 6, 2023
2 parents d99c494 + ae34cee commit 8141f9f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,10 @@ public Map<String, TableDefinition> getTableDefinitionMap() {
e -> (TableDefinition) e.getValue()));
}

public ConcurrentMap<String, AggregationRuntime> getAggregationMap() {
return aggregationMap;
}

/**
* Get the window definition map.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -733,4 +733,8 @@ public void setAggregationDurationExecutorMap(Map<String,
Map<TimePeriod.Duration, Executor>> aggregationDurationExecutorMap) {
this.aggregationDurationExecutorMap = aggregationDurationExecutorMap;
}

public IncrementalExecutorsInitialiser getIncrementalExecutorsInitialiser() {
return incrementalExecutorsInitialiser;
}
}

0 comments on commit 8141f9f

Please sign in to comment.