Make process run on non EDT (event dispatch thread) thread from EDT

Posted by Aly on Stack Overflow See other posts from Stack Overflow or by Aly
Published on 2010-03-12T21:46:47Z Indexed on 2010/03/12 21:57 UTC
Read the original article Hit count: 254

Filed under:
|
|
|
|

I have a method running on the EDT and within that I want to make it execute something on a new (non EDT) thread. My current code is follows:

@Override
    public void actionPerformed(ActionEvent arg0) {
//gathering parameters from GUI

//below code I want to run in new Thread and then kill this thread/(close the JFrame)
new GameInitializer(userName, player, Constants.BLIND_STRUCTURE_FILES.get(blindStructure), handState);
}

© Stack Overflow or respective owner

Related posts about java

Related posts about swing