You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Allowed the top of the hierarchy to be an interface.
If classes implement an interface instead of extending an abstract
class, the Java Object Mapper should respect any AerospikeRecords
annotations on the interface.
The Object Mapper will look for definitions in the config file, then any
AerospikeRecords on the specific class, then the superclasses and
finally anything in the interface hierarchy. The first one which defines
a namespace will be the definition which is used.
* Changed the interface scanning to not store information which is not
needed.
* Added convenience methods for getting namespace/set/key/RecordKey
* Apply suggestions from code review
Co-authored-by: Eugene R. <[email protected]>
* Update InterfaceHierarchyTest.java
Utilised "addAll" to add vararg children to parent, and removed redundant saving of nested children
* Modified reactive interface
* Implemented reactive methods
* Fixed the reactive test
* More reactive changes
---------
Co-authored-by: Eugene R. <[email protected]>
The former is considered better style in Java and also provides the JavaObjectMapper with information about the elements in the list, so it will optimize its workings to know how to store a list of Customers. The latter gives it no type information so it must derive the type -- and hence how to map it to Aerospike -- for every element in this list. This can have a noticeable performance impact for large lists, as well as consuming more database space (asitmuststoretheruntimetypeofeachelementinthelistinadditiontothedata).
1706
1707
1708
+
### Using Interfaces
1709
+
Sometimes it is better to have an interface to group common types rather an an abstract superclass. In this case the Object Mapper supports placing the `@AerospikeReocrd` annotation on the interface and it will behave as if the annotation was on a superclass. There are multiple different was of placing the `@AerospikeRecord` annotation on a single class, and the order the Object Mapper looks for them in is:
1710
+
1. Configuration file
1711
+
2. Class level definition
1712
+
3. First parent class with `@AerospikeRecord` annotation (ofanyancestor)
1713
+
4. Interface with `@AerospikeRecord` annotation (firstonefound)
1714
+
1715
+
Once the Object Mapper finds an appropriate annotation it ignores any further annotations and uses the definitions on the first one found.
0 commit comments