Package org.pirkaengine.core.serialize

Examples of org.pirkaengine.core.serialize.CacheDeserializerImpl


    private CacheDeserializerImpl target;

    @Before
    public void setup() {
        target = new CacheDeserializerImpl();
        PirkaContext ctx = new PirkaContext();
        ctx.setTemplatePath("tmp/test");
        target.setContext(ctx);
    }
View Full Code Here


        PirkaContext context = new PirkaContext();
        context.setEnableCache(true);
        context.setCachePath("tmp/cache");
        CacheSerializerImpl serializer = new CacheSerializerImpl();
        serializer.setContext(context);
        CacheDeserializerImpl deserializer = new CacheDeserializerImpl();
        deserializer.setContext(context);
        target = new CacheManager(serializer, deserializer);
    }
View Full Code Here

TOP

Related Classes of org.pirkaengine.core.serialize.CacheDeserializerImpl

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.