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

com.yy.httpproxy.serializer.StringPushSerializer Maven / Gradle / Ivy

There is a newer version: 1.0.45
Show newest version
package com.yy.httpproxy.serializer;

import java.io.UnsupportedEncodingException;

/**
 * Created by xuduo on 10/20/15.
 */
public class StringPushSerializer implements PushSerializer {
    @Override
    public Object toObject(String topic, Object clazz, byte[] body) {
        try {
            return new String(body, "UTF-8");
        } catch (UnsupportedEncodingException e) {
            throw new RuntimeException(e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy