Hi! Recently I've noticed that my app is running out of memory. I took a heap dump and saw a lot of references to org.reactfx.* and org.fxmisc.*
Attached is a screenshot from MAT.
In this particular case, the data field was updated about 300 times per second by doing:
dataField.clear();
dataField.appendText(textToDisplay);
dataField.setStyleClass(0, dataField.getText().length(), "messageText");
The dataField is an instance of StyleClassedTextArea. Using 0.6.3.

Any help appreciated!
Hi! Recently I've noticed that my app is running out of memory. I took a heap dump and saw a lot of references to org.reactfx.* and org.fxmisc.*
Attached is a screenshot from MAT.
In this particular case, the data field was updated about 300 times per second by doing:
dataField.clear();
dataField.appendText(textToDisplay);
dataField.setStyleClass(0, dataField.getText().length(), "messageText");
The dataField is an instance of StyleClassedTextArea. Using 0.6.3.
Any help appreciated!