I need to send over the network an array of Externalizable
objects for maintainability and performance reasons (Serializable
is not enough).
The documentation says that all arrays in Java are Serializable
. Is it possible to have an array that is also Externalizable
? If not, what are the workarounds to still have benefits of Externalizable
and send a bunch of these objects over the network?