Ejemplo n.º 1
0
        public static async Task <CompilerResult> CallServiceAsync(string path, bool reattempt = false)
        {
            await Up();

            if (_server != null)
            {
                return(await _server.CallService(path, reattempt));
            }
            else
            {
                return(CompilerResult.GenerateResult(path, "", "", false, "Unable to start node", "", null, false));
            }
        }
Ejemplo n.º 2
0
        public static async Task <CompilerResult> CallServiceAsync(string path, bool reattempt = false)
        {
            await Up();

            return(await _server.CallService(path, reattempt));
        }