java - Ending blocked GUI threads -
i writing platform game in java. making when exception occurs in game show user error report. however, causing problems when error occurs in gui thread, because error report wont show because gui blocked.
how safely this? tried safely ending of blocking gui threads, gave me error saying thread interrupted.
use swingworker , ui thread not blocked. should used when doing long running task in background without freezing ui.
Comments
Post a Comment