runtime.csharp.IRT.IServiceDispatcher.cs Maven / Gradle / Ivy
using System;
using System.Collections;
using System.Collections.Generic;
namespace IRT {
public interface IServiceDispatcher {
D Dispatch(C ctx, string method, D data);
string GetSupportedService();
string[] GetSupportedMethods();
}
}