That is what I had assumed but it appears not to be the case. A class (and its properties) of one core is not visible to another class in another core - in the same JVM.
Peyman On Jun 29, 2013, at 1:23 PM, Erick Erickson <erickerick...@gmail.com> wrote: > Well, the code is all in the same JVM, so there's no > reason a singleton approach wouldn't work that I > can think of. All the multithreaded caveats apply. > > Best > Erick > > > On Fri, Jun 28, 2013 at 3:44 PM, Peyman Faratin <pey...@robustlinks.com>wrote: > >> Hi >> >> I have a multicore setup (in 4.3.0). Is it possible for one core to share >> an instance of its class with other cores at run time? i.e. >> >> At run time core 1 makes an instance of object O_i >> >> core 1 --> object O_i >> core 2 >> --- >> core n >> >> then can core K access O_i? I know they can share properties but is it >> possible to share objects? >> >> thank you >> >>