I'm following this Swing tutorial and I ran across this snippet of code:
EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
SimpleExample ex = new SimpleExample();
ex.setVisible(true);
}
});
What's happening inside the EventQueue.invokeLater
params?