]
Galder Zamarreño commented on ISPN-807:
---------------------------------------
Forgot to change the Scala Externalizer implementations, here comes the right pull:
Generalize Externalizer interface
---------------------------------
Key: ISPN-807
URL:
https://jira.jboss.org/browse/ISPN-807
Project: Infinispan
Issue Type: Feature Request
Components: Marshalling
Reporter: Galder Zamarreño
Assignee: Galder Zamarreño
Fix For: 5.0.0.ALPHA1, 5.0.0.Final
Make Externalizer interface generalized in order to make it more typesafe, i.e.:
interface Externalizer<T> {
void writeObject(ObjectOutput output, T object) throws IOException;
T readObject(ObjectInput input) throws IOException, ClassNotFoundException;
}
--
This message is automatically generated by JIRA.
-
For more information on JIRA, see: