Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1BF9E200C11 for ; Sat, 4 Feb 2017 15:07:08 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 1A75A160B63; Sat, 4 Feb 2017 14:07:08 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 6490F160B56 for ; Sat, 4 Feb 2017 15:07:07 +0100 (CET) Received: (qmail 94209 invoked by uid 500); 4 Feb 2017 14:07:00 -0000 Mailing-List: contact issues-help@jmeter.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@jmeter.apache.org Delivered-To: mailing list issues@jmeter.apache.org Received: (qmail 94044 invoked by uid 99); 4 Feb 2017 14:07:00 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 04 Feb 2017 14:07:00 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id BB2CE1806E2 for ; Sat, 4 Feb 2017 14:06:58 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -1.999 X-Spam-Level: X-Spam-Status: No, score=-1.999 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=-2.999] autolearn=disabled Received: from mx1-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id XvtV1UevUR1Q for ; Sat, 4 Feb 2017 14:06:56 +0000 (UTC) Received: from internetallee.de (internetallee.de [81.169.162.220]) by mx1-lw-eu.apache.org (ASF Mail Server at mx1-lw-eu.apache.org) with ESMTPS id 41B985F30A for ; Sat, 4 Feb 2017 14:06:56 +0000 (UTC) Received: from felix-s4.fritz.box (p5DE8E0CD.dip0.t-ipconnect.de [93.232.224.205]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by internetallee.de (Postfix) with ESMTPSA id A1AB34E01E6 for ; Sat, 4 Feb 2017 15:06:48 +0100 (CET) Date: Sat, 04 Feb 2017 15:06:45 +0100 User-Agent: K-9 Mail for Android In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Bug 60687] Make GUI more responsive when LoggerPanel gets a lot of events To: issues@jmeter.apache.org From: Felix Schumacher Message-ID: archived-at: Sat, 04 Feb 2017 14:07:08 -0000 Am 4=2E Februar 2017 14:02:58 MEZ schrieb Vladimir Sitnikov : >It does not look good to me=2E >I think >1) SwingUtilities=2EinvokeLater is missing The timer lives in the awt thread, so we need no invokeLater=2E Or do I mi= ss something? >2) =2Eclear() misses to set logChanged=3Dtrue The component is set to an empty text, so logChanged can be left alone, or= even set to false=2E Don't you think? >3) if (logChanged) should be expressed as if (!logChanged) {return;} Probably=2E >4) Do we really need a thread there? How that approach would scale >across >new components (e=2Eg=2E statistics, etc, etc)? You mean the timer thread? Felix > >Vladimir