Created
December 15, 2016 17:45
-
-
Save divoxx/fffbb9d03e3b014e85826b3c5b9ced77 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Foo | |
@@mutex = Mutex.new | |
def self.something | |
@@mutex.synchronize do | |
return @something if defined?(@something) | |
@something = init_here | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment