Example #1
0
        static ServiceManager()
        {
            ServiceContext = new ServiceContext();
            ServiceContext.Scheduler = null;
            ServiceContext.WcfHost = null;
            ServiceContext.ProgressInfoManager = ProgressInfoManager.Instance;

            iocManager = IocManager.Instance;

            Initialize();
        }
Example #2
0
        public static IEnumerable<IModuleExtension> ReadConfig(ServiceContext serviceContext)
        {
            var moduleExtensionList = new List<IModuleExtension>();

            if (Defaults.IsIsolatedJob)
            {
                //moduleExtensionList.Add(new MqModule() { ServiceContext = serviceContext });
            }

            return moduleExtensionList;
        }