public interface Delta
DeltaAware
implementation. Implementations should be efficiently
Externalizable
rather than just Serializable
.DeltaAware
Modifier and Type | Method and Description |
---|---|
DeltaAware |
merge(DeltaAware d)
Merge the current Delta instance with a given
DeltaAware instance, and return a coherent and complete
DeltaAware instance. |
DeltaAware merge(DeltaAware d)
DeltaAware
instance, and return a coherent and complete
DeltaAware
instance. Implementations should be able to deal with null values passed in, or values of a
different type from the expected DeltaAware instance. Usually the approach would be to ignore what is passed in,
create a new instance of the DeltaAware implementation that the current Delta implementation is written for, apply
changes and pass it back.d
- instance to merge with, or null if no merging is neededCopyright © 2018 JBoss, a division of Red Hat. All rights reserved.