java/grafana-api-impl/src/main/java/com/epam/deltix/grafana/JoiningAggregation.java [92:107]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GenericRecord calculateLast() {
        record.reuse();
        factory.reuse();
        boolean first = true;
        for (Aggregation aggregation : aggregations) {
            GenericRecord r = aggregation.calculateLast();
            if (r != null) {
                if (first) {
                    first = false;
                    record.setTimestamp(r.timestamp());
                }
                factory.copyContent(r, record);
            }
        }
        return record;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



java/grafana-api-impl/src/main/java/com/epam/deltix/grafana/RuntimeJoiningAggregation.java [101:116]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public GenericRecord calculateLast() {
        record.reuse();
        factory.reuse();
        boolean first = true;
        for (Aggregation aggregation : aggregations) {
            GenericRecord r = aggregation.calculateLast();
            if (r != null) {
                if (first) {
                    first = false;
                    record.setTimestamp(r.timestamp());
                }
                factory.copyContent(r, record);
            }
        }
        return record;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



