Suppose I have smth like:
public interface ITest {
long[] getDataArray();
void setDataArray(long[] data);
}
In this case because of long[] looks like I cannot use
Values.newHeapInstance(ITest.class);
(I am getting field type class [Lnet.openhft.chronicle.core.values.LongValue; is not supported: not a primitive, enum, CharSequence or another value interface
Exception)
Sounds strange am I missing smth? What is the best approach to work with such objects? Implement own serialization?