-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
stress test with update rates > 100 Hz, see #40
- Loading branch information
1 parent
e422f2b
commit 8ac4182
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
23 changes: 23 additions & 0 deletions
23
chartfx-samples/src/main/java/de/gsi/chart/samples/legacy/ChartHighUpdateRateSample.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package de.gsi.chart.samples.legacy; | ||
|
||
import de.gsi.chart.samples.RollingBufferSample; | ||
import javafx.application.Application; | ||
|
||
/** | ||
* chart-fx stress test for updates at 100 Hz to 1 kHz | ||
* | ||
* @author rstein | ||
* @Deprecated chart-fx not (yet) nominally designed to allow for > 100 Hz update rates | ||
*/ | ||
@Deprecated | ||
public class ChartHighUpdateRateSample extends RollingBufferSample { | ||
static { | ||
N_SAMPLES = 30000; | ||
UPDATE_PERIOD = 10; | ||
BUFFER_CAPACITY = 7500; | ||
} | ||
|
||
public static void main(final String[] args) { | ||
Application.launch(args); | ||
} | ||
} |