Examples of using Another thread in English and their translations into Vietnamese
{-}
-
Colloquial
-
Ecclesiastic
-
Computer
Waiting: Sometimes, a thread transitions to the waiting state while the thread waits for another thread to perform a task.
happen in one thread can“leak through” and be seen by another thread, but this is by no means guaranteed.
is called from another thread.
of the program code, including parts currently being executed by another thread.
any part of the process code, including parts currently being executed by another thread.
A blocking queue in which each insert operation must wait for a corresponding remove operation by another thread, and vice versa.
Public static bool Yield(): Ths causes the calling thread to yield execution to another thread that is ready to run on the current processor….
One thread may pass a copy of a pritimive variable to another thread, but it cannot share the primitive local variable itself.
Waiting- Sometimes, a thread transitions to the waiting state while the thread waits for another thread to perform a task.
Public final void wait() throws InterruptedException- causes this thread to wait until another thread calls the notify() or notifyAll() methods for this object.
There is another thread of energy, which we call the consciousness aspect
Since this application has not defined another thread to cause the interrupt, it doesn't bother to catch InterruptedException.
One thread cannot see what changes another thread makes to its copy of localVariable1.
This is an exception that sleepthrows when another thread interrupts the current thread while sleepis active.
enter a synchronized block, but the lock was taken by another thread.
The task of each thread is switched to the task of another thread.
This is an implicit AND SPLIT operation, where the activity continues and another thread is started following the named exception transition.
A thread that calls wait() on any object becomes inactive until another thread calls notify()
The Future monad is used for wrapping up slow computations and dispatching them to another thread for completion.
Blocked A resource cannot be accessed because it is being used by another thread.