Skip to content

Commit

Permalink
Add method, that get scatter data made of dot group . pinpoint-apm#1518
Browse files Browse the repository at this point in the history
  • Loading branch information
koo-taejin authored and dawidmalina committed Mar 20, 2016
1 parent d735d82 commit 11cd507
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,16 @@ public Map<Long, DotGroups> getSortedScatterDataMap() {


public long getOldestAcceptedTime() {
if (oldestAcceptedTime == Long.MAX_VALUE) {
return -1;
}
return oldestAcceptedTime;
}

public long getLatestAcceptedTime() {
if (latestAcceptedTime == Long.MIN_VALUE) {
return -1;
}
return latestAcceptedTime;
}

Expand Down

0 comments on commit 11cd507

Please # to comment.