|
From: NHibernate J. <mik...@us...> - 2006-11-20 15:13:35
|
External serializer
-------------------
Key: NH-820
URL: http://jira.nhibernate.org/browse/NH-820
Project: NHibernate
Type: Improvement
Components: Core
Versions: 1.2.0.Beta2
Reporter: Fabio Maulo
Priority: Minor
What about to add a config parameter to have an external serializer?
In NHb we can actually use SerializationHelper, we can sill use SerializationHelper like default and we can have an external serializer.
We can introduce a new interface:
public interface ISerializer
{
byte[] Serialize(object obj);
object Deserialize(byte[] data);
}
Using an adapter the user can have he's own optimized serializer.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.nhibernate.org/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira
|