Example #1
0
        public void AsynHandler(int methodId, string input)
        {
            ILanguageRuntime runtime = null;

            try
            {
                runtime = _GetRuntime();
                runtime.AsynHandler(methodId, input);
            }
            finally
            {
                if (runtime != null)
                {
                    _PutRuntime(runtime);
                }
            }
        }