MCPcopy Index your code
hub / github.com/OpenTSDB/opentsdb / getStartTime

Method getStartTime

src/core/TsdbQuery.java:283–289  ·  view source on GitHub ↗

@return the start time for the query @throws IllegalStateException if the start time hasn't been set yet

()

Source from the content-addressed store, hash-verified

281 * @throws IllegalStateException if the start time hasn't been set yet
282 */
283 @Override
284 public long getStartTime() {
285 if (start_time == UNSET) {
286 throw new IllegalStateException("setStartTime was never called!");
287 }
288 return start_time;
289 }
290
291 /**
292 * Sets the end time for the query. If this isn't set, the system time will be

Callers 6

splitMethod · 0.95
setEndTimeMethod · 0.95
splitMethod · 0.95
toStringMethod · 0.95

Calls

no outgoing calls

Tested by 1

splitMethod · 0.76