2015年11月6日 星期五

[ 常見問題 ] Is there a Groovy way of making a method synchronized?

Source From Here 
Question 
I'm working with Groovy 1.7.2. There are methods which needs to be Synchronized , is there any groovier way of doing this or I have to follow same Java way of putting synchronized keyword before method. For example: 
  1. synchronized static def  Map getMap(def fileName) { }  
How-To 
If you can upgrade to Groovy 1.7.3 you can use the Synchronized AST transformation instead. You can use the annotation on instance and static methods. The annotation will create a lock variable in your class (or you can use an existing variable) and the code is synchronized on that lock variable. 

The usage of a synchronized block should be preferred over adding the keyword to the method. If you use the synchronized keyword on the method you synchronize on this which means that all other threads that want to access any of the methods in your class have to wait until the lock is free again
  1. import groovy.transform.Synchronized  
  2.   
  3. class YourClass {  
  4.     @Synchronized  
  5.     static Map getMap(def fileName) {  
  6.         ...  
  7.     }  
  8. }  
Supplement 
[ GroovyGN ] Synchronized Annotation for Synchronizing Methods

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...