Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

Is there a way to store a reference to a Java thread?

Java Reference store thread
0
Posted

Is there a way to store a reference to a Java thread?

0

> Is there a way to ‘store’ a reference to a thread at a certain point and > run a command in that thread at a later point in time? Of course there is! (Just depends on what you really mean.) RunnableTask task = new RunnableTask(); Thread t = new Thread(task); ^ reference t.start() … task.addCommandToTaskQueue(new Command()); (this puts the task on the queue and wakes up the thread if sleeping.) This may not be what you were THINKING of, but it’s probably what you REALLY want.

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123