Package com.dyuproject.protostuff.benchmark

Examples of com.dyuproject.protostuff.benchmark.MediaContent


public class ProtostuffSmileSerializer extends AbstractProtostuffSerializer
{

    public MediaContent deserialize(byte[] array) throws Exception
    {
        MediaContent mediaContent = new MediaContent();
        SmileIOUtil.mergeFrom(array, mediaContent, mediaContent.cachedSchema(), false);
        return mediaContent;
    }
View Full Code Here


   
    static final Schema<MediaContent> schema = RuntimeSchema.getSchema(MediaContent.class);

    public MediaContent deserialize(byte[] array) throws Exception
    {
        MediaContent mediaContent = new MediaContent();
        ProtobufIOUtil.mergeFrom(array, mediaContent, schema);
        return mediaContent;
    }
View Full Code Here

TOP

Related Classes of com.dyuproject.protostuff.benchmark.MediaContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.