https://bz.apache.org/bugzilla/show_bug.cgi?id=60687
Bug ID: 60687
Summary: Make GUI more responsive when LoggerPanel gets a lot
of events
Product: JMeter
Version: 3.1
Hardware: All
OS: All
Status: NEW
Severity: enhancement
Priority: P2
Component: Main
Assignee: [email protected]
Reporter: [email protected]
Target Milestone: ---
Created attachment 34714
--> https://bz.apache.org/bugzilla/attachment.cgi?id=34714&action=edit
Use a bounded fifo buffer for the log events and update LoggerPanel
periodically instead of directly
The LoggerPanel gets every LogEvent added in the AWT thread. This can lead to
contention of the AWT event queue, which renders the UI unusable.
The attached patch passes the LogEvents into a bounded fifo buffer, that is
used periodically to update the LoggerPanel. This takes a lot of stress from
the AWT event queue.
--
You are receiving this mail because:
You are the assignee for the bug.