Are there some metrics regarding the performance of serialization? How does GWT performs serializing and deserializing nested object structures of huge size?
Also what are the common bottlenecks in that? On Sep 28, 2:13 pm, vibrant <[email protected]> wrote: > Serialization: > Serialization is the process of transmitting object across the > network (client and server) connection in binary form. > > GWT supports object serialization as part of its RPC (Remote > Procedures Calls) mechanism. > > Serialize Types: > > A type is serialization and can be used in service interface if the > type: > 1. is primitive i.e char, byte, short, int ,long,boolean, float, > double. > 2. is String Date, or primitive wrapper such as Char, Byte, Short, > Int, Long, Boolean, Float, Double. > 3. is an array of serializable types (including other serializable > arrays) > 4. is serialization user-defined class or > 5. has at least one serializable subclass. > > GWT RPC mechanism makes it simple to get data between client and > server over the network. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
