Package org.atmosphere.gwt20.server
Interface ServerSerializer
-
public interface ServerSerializer- Author:
- Havelaar
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Objectdeserialize(java.lang.String message)You need to implement this method in your serializerjava.lang.Stringserialize(java.lang.Object message)You need to implement this method in your serializer
-
-
-
Method Detail
-
deserialize
java.lang.Object deserialize(java.lang.String message) throws SerializationExceptionYou need to implement this method in your serializer- Throws:
SerializationException
-
serialize
java.lang.String serialize(java.lang.Object message) throws SerializationExceptionYou need to implement this method in your serializer- Throws:
SerializationException
-
-