Home | History | Annotate | Download | only in concurrent

Lines Matching defs:Holder

203     class Holder {
206 final Holder holder = new Holder();
208 // This function adds the holder's value to the input value.
211 return from + holder.value;
215 // Since holder.value is 2, applying 4 should yield 6.
226 holder.value = 3;
231 holder.value = 4;