public VelocityTemplateEngine(PipelineContext context, Configuration.Template template, IReader templateReader)
        {
            VelocityInitializer.Init();

            _context        = context;
            _template       = template;
            _templateReader = templateReader;
        }
 public VelocityWriter(IConnectionContext output, IReader templateReader)
 {
     _templateReader = templateReader;
     _output         = output;
     VelocityInitializer.Init();
 }