All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.atmosphere.gwt20.client.ClientSerializer Maven / Gradle / Ivy

There is a newer version: 2.6.5
Show newest version
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package org.atmosphere.gwt20.client;

import com.google.gwt.user.client.rpc.SerializationException;

/**
 * @author p.havelaar
 */
public interface ClientSerializer {

    /**
     * You need to implement this method in your serializer
     */
    public Object deserialize(String message) throws SerializationException;

    /**
     * You need to implement this method in your serializer
     */
    public String serialize(Object message) throws SerializationException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy