Can eclipse notify me when a task has finished running?

前端 未结 1 582
长发绾君心
长发绾君心 2021-02-13 16:02

I am often stuck twiddling my thumbs for a couple minutes while eclipse cleans, builds, or loads my projects. It would be nice if eclipse could notify me with a beep when the l

1条回答
  •  一生所求
    2021-02-13 16:22

    There are no preference for this - yet.

    The JobManager have the needed API to support this functionality...

    EDIT: I have constructed and attached a very simple plug-in that will beep for every job that terminates. That turns out to be rather often :-) . You can modify it to filter out all the false positives, e.g. by getPriority() and getName(). Also you can make the listener play a tune, popup a message (don't!) or whatever...

    See jobnotifier.zip.

    UPDATED the link above again

    0 讨论(0)
提交回复
热议问题