0

I have heard by a stackoverflow member that invoke later method schedules an asynchronous event on the EDT.

  1. What is meant by asynchronous event?

  2. When does the processing of run method in invokelater() takes place.

PrR3
  • 1,250
  • 1
  • 18
  • 26
cool joey
  • 167
  • 1
  • 1
  • 7

1 Answers1

0

Asynchronous is running processes in parallel.

invokeLater() places the process in a queue to be executed.

These are two separate questions previously answered on StackOverflow.

Community
  • 1
  • 1
Ross Drew
  • 8,163
  • 2
  • 41
  • 53