[infinispan-issues] [JBoss JIRA] Created: (ISPN-807) Generalize Externalizer interface

Galder Zamarreño (JIRA) jira-events at lists.jboss.org
Mon Nov 29 11:34:09 EST 2010


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: http://www.atlassian.com/software/jira

       



More information about the infinispan-issues mailing list