0

I am using GWT 2.4.

I am using Scheduler.get().scheduleFixedDelay(new Scheduler.RepeatingCommand() and Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() when needed.

For some reason, when I am debugging the website a timer fired event is being shown frequently even when I am in the login page(where I do nothing besides showing username and password).

Why is this happening? It is because of this, that the scrolling looks unresponsive. Please note that I am remotely debugging the website by connecting my ipad to macbook.

Attached is a screen grab. Any help will be greatly appreciated.

Problem

4

2 に答える 2

0

あなたが言う時

タイマー起動イベントが頻繁に表示される

RepeatingCommand が何度も実行されるということですか?

scheduleFixedDelay を呼び出すとすぐに、execute() メソッドが true を返す限り、スケジューラーは RepeatingCommand を実行します。

ログインページにいます

ログインしていなくても、質問で話しているスケジュールされたコマンドが呼び出されるかどうかを確認するためにログを書いてみませんか?

于 2013-10-03T11:09:02.873 に答える