In Java while I am creating threads and sharing an object there are times when I will want to have threads accessing the same object method, but I don't what them to do it at the same time. So, to avoid this I will define the object method as a Synchronized method as shown below.
Synchronized Instance Method:
class class_name { synchronized type method_name() { \statement block } }
All the statements in the method become the synchronized block, and the instance object is the lock. This means that if I tell a thread to use this method, it will wait till the previous thread has finished using the method. Is there a way to do this in Perl?