zetbaitsu / Compressor

An android image compression library.
7.08k stars 963 forks source link

Double-checked locking with volatile for lazy initialization #3

Closed vpop closed 8 years ago

vpop commented 8 years ago

Made the lazy initialization of INSTANCE thread-safe by applying the double-checked locking pattern with volatile instance variable.

More details about the pattern here.