InitVelocimacro() public method

initialize the factory - setup all permissions load all global libraries.
public InitVelocimacro ( ) : void
return void
Example #1
0
        public void Init()
        {
            lock (this)
            {
                if (initialized == false)
                {
                    initializeProperties();
                    initializeLogger();
                    initializeResourceManager();
                    initializeDirectives();
                    initializeParserPool();
                    initializeIntrospection();

                    // initialize the VM Factory.  It will use the properties
                    // accessible from Runtime, so keep this here at the end.
                    vmFactory.InitVelocimacro();

                    initialized = true;
                }
            }
        }