1
0
mirror of https://github.com/msgpack/msgpack-c.git synced 2025-03-22 16:33:49 +01:00

MSGPACK-6 added new TemplatePrecompiler function

This commit is contained in:
Muga Nishizawa 2011-04-23 22:47:44 +09:00
parent 46c794fc2e
commit 2b28211701

@ -37,6 +37,12 @@ import org.msgpack.template.builder.JavassistTemplateBuilder;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* This class is a template precompiler, which is used for saving templates
* that <code>TemplateBuilder</code> generated. It saves templates as .class files.
* Application enables to load the .class files and use templates.
*
*/
public class TemplatePrecompiler {
private static final Logger LOG = LoggerFactory.getLogger(TemplatePrecompiler.class);