final void suspend()
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Suspends this thread, i.e. when it is alive it will make no further progress until it is resumed.
Note that using suspend might lead to deadlocks because any resource protected by a monitor locked by this thread cannot be accessed by another thread until this thread is resumed. So if the thread that should resume this thread tries to lock such a monitor a deadlock situation will result.