Hi All,
I am bit new to this.
Could some one help me to understand region storage? I have following
Instrument instance which internally refers to many Instrument instances
via Basket.
There is 1 Instrument region which contains all instruments. Would there be
duplicate instrument objects created within Basket even though similar
Instrument object exists within region (By hashcode/equals - Reference
point of view)
Class Instrument{
Basket backet;h
}
Class Backet{
List<Constituent> constituents;
}
Class Constituent {
List<Instrument> instruments;
}
Thanks,
- Dharam Thacker