public Task Async_Enqueue(string hostSetName, string svcName, IConfigSectionNode args, Type type = null) { var guid = args.AttrByName(CONFIG_TYPE_GUID_ATTR).ValueAsGUID(Guid.Empty); if (type == null && guid != Guid.Empty) { type = TodoTypeResolver.Resolve(guid); } return(Async_Enqueue(Todo.MakeNew(App, type, args), hostSetName, svcName)); }
public Task Async_Enqueue(string hostSetName, string svcName, IConfigSectionNode args, Guid type) { return(Async_Enqueue(hostSetName, svcName, args, TodoTypeResolver.Resolve(type))); }
public void Enqueue(string hostSetName, string svcName, IConfigSectionNode args, Guid type) { Enqueue(hostSetName, svcName, args, TodoTypeResolver.Resolve(type)); }