|
|
@ -22,9 +22,9 @@ public class Statistics { |
|
|
|
return getTickerCount0(tickerType.getValue(), statsHandle_); |
|
|
|
return getTickerCount0(tickerType.getValue(), statsHandle_); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public HistogramData geHistogramData(final HistogramType histogramType) { |
|
|
|
public HistogramData getHistogramData(final HistogramType histogramType) { |
|
|
|
assert(isInitialized()); |
|
|
|
assert(isInitialized()); |
|
|
|
return geHistogramData0( |
|
|
|
return getHistogramData0( |
|
|
|
histogramType.getValue(), statsHandle_); |
|
|
|
histogramType.getValue(), statsHandle_); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
@ -33,5 +33,5 @@ public class Statistics { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
private native long getTickerCount0(int tickerType, long handle); |
|
|
|
private native long getTickerCount0(int tickerType, long handle); |
|
|
|
private native HistogramData geHistogramData0(int histogramType, long handle); |
|
|
|
private native HistogramData getHistogramData0(int histogramType, long handle); |
|
|
|
} |
|
|
|
} |
|
|
|