Skip to content

Commit

Permalink
stress test with update rates > 100 Hz, see #40
Browse files Browse the repository at this point in the history
  • Loading branch information
RalphSteinhagen committed Sep 27, 2019
1 parent e422f2b commit 8ac4182
Showing 1 changed file with 23 additions and 0 deletions.
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);
}
}

0 comments on commit 8ac4182

Please sign in to comment.