| 52 | } |
| 53 | |
| 54 | JavaObjectStore::JavaObjectStore() { |
| 55 | auto& cache = JavaCache::get(); |
| 56 | auto weakMap = cache.getWeakHashMapClass().newObject(cache.getWeakHashMapConstructorMethod()); |
| 57 | _weakMap = IndirectJavaGlobalRef::make(weakMap.get(), "JavaObjectStoreWeakMap"); |
| 58 | } |
| 59 | |
| 60 | JavaObjectStore::~JavaObjectStore() = default; |
| 61 |