Multiuser Lingo Dictionary > Multiuser Lingo Dictionary > notifyAll() |
![]() ![]() ![]() |
notifyAll()
Syntax
notifyAll(whichObject
)
Description
Multiuser Server server-side command; unblocks all threads waiting on the given object.
Example
This statement tells all threads waiting for the object theList
to continue executing with the new value of theList
:
notifyAll(theList)
See also
![]() ![]() ![]() |