MWS.WebService.MovilizerWebService.GetOrCreateMasterdataPoolUpdateTemplate C# (CSharp) Method

GetOrCreateMasterdataPoolUpdateTemplate() public method

public GetOrCreateMasterdataPoolUpdateTemplate ( string pool ) : MasterdataPoolUpdateTemplate
pool string
return MWS.Templates.MasterdataPoolUpdateTemplate
        public MasterdataPoolUpdateTemplate GetOrCreateMasterdataPoolUpdateTemplate(string pool)
        {
            MasterdataPoolUpdateTemplate poolUpdate;
            if (_masterdataPoolUpdateTemplates.ContainsKey(pool))
            {
                poolUpdate = _masterdataPoolUpdateTemplates[pool] as MasterdataPoolUpdateTemplate;
            }
            else
            {
                poolUpdate = new MasterdataPoolUpdateTemplate(pool);
                _masterdataPoolUpdateTemplates[pool] = poolUpdate;
                //_outQueue.Enqueue(poolUpdate);
            }
            return poolUpdate;
        }