示例#1
0
        private async Task <bool> ScheduleTest(string nodeName, string uri, string testId, string callBackUri, string requestId)
        {
            try
            {
                await _testScheduler.Schedule(nodeName, uri, testId, requestId, callBackUri);

                return(true);
            }
            catch (Exception e)
            {
                return(false);
            }
        }