diff options
author | Roel Spilker <r.spilker@gmail.com> | 2018-10-15 21:15:25 +0200 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2018-10-15 21:15:25 +0200 |
commit | cbcab664805916d8a7e6ee53c1df5a454611f99e (patch) | |
tree | c995f80fbd95f7d18f3458a33e38a25b20dffc35 /website/templates/features | |
parent | 3bb6f69a5b03ac3181f5bd6a04050ba339c7642e (diff) | |
download | lombok-cbcab664805916d8a7e6ee53c1df5a454611f99e.tar.gz lombok-cbcab664805916d8a7e6ee53c1df5a454611f99e.tar.bz2 lombok-cbcab664805916d8a7e6ee53c1df5a454611f99e.zip |
#1881 add documentation
Diffstat (limited to 'website/templates/features')
-rw-r--r-- | website/templates/features/GetterLazy.html | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/website/templates/features/GetterLazy.html b/website/templates/features/GetterLazy.html index b1f374a8..e921712c 100644 --- a/website/templates/features/GetterLazy.html +++ b/website/templates/features/GetterLazy.html @@ -9,6 +9,9 @@ <p> You can let lombok generate a getter which will calculate a value once, the first time this getter is called, and cache it from then on. This can be useful if calculating the value takes a lot of CPU, or the value takes a lot of memory. To use this feature, create a <code>private final</code> variable, initialize it with the expression that's expensive to run, and annotate your field with <code>@Getter(lazy=true)</code>. The field will be hidden from the rest of your code, and the expression will be evaluated no more than once, when the getter is first called. There are no magic marker values (i.e. even if the result of your expensive calculation is <code>null</code>, the result is cached) and your expensive calculation need not be thread-safe, as lombok takes care of locking. </p> + <p> + If the initialization expression is complex, or contains generics, we recommend moving the code to a private (if possible static) method, and call that instead. + </p> </@f.overview> <@f.snippets name="GetterLazy" /> |