I have developed code in Java for generating ten random numbers from a range 0 to 99. The problem is I need to generate a random number for every 2 min. I am new to this area and need your views.
|
|
This example adds a random number to a blocking dequeue every two minutes. You can take the numbers from the queue when you need them. You can use java.util.Timer as a lightweight facility to schedule the number generation or you can use java.util.concurrent.ScheduledExecutorService for a more versatile solution if you need more sophistication in the future. By writing the numbers to a dequeue, you have a unified interface of retrieving numbers from both facilities. First, we set up the blocking queue:
Here is the setup with java.utilTimer:
This is the setup with java.util.concurrent.ScheduledExecutorService
Now, you can get a new random number from the queue every two minutes. The queue will block until a new number becomes available...
Once you are done, you can terminate the scheduler. If you used the Timer, just do
If you used ScheduledExecutorService you can do
|
|||||||||||||||||||
|
|
You have two requirements which are unrelated:
To do anything every 2 minutes you can use a ScheduledExecutorService. |
|||
|
|
EDIT: Of course you should set 2000 in new Timer(2000, actionListener); to 120 000 for two minutes. |
|||||||
|
|
You can schedule your program to be run once every two minutes using whatever scheduling features are available to you in your target environment (e.g., Or you can use the
(That's just example code, you'll need to handle the InterruptedException and such.) |
|||||||||||||||
|
|
I'm not entirely sure I understand the problem. If you wish to generate a different random number every two minutes, simply call your This could be as simple as something like (pseudo-code):
If you want to keep using the same random number for two minutes and generate a new one:
which will continue to return the same number for a two minute period. |
|||||||||||||
|