IBridge.cs 333 B

123456789101112131415
  1. using System;
  2. namespace TapSDK.Core
  3. {
  4. public interface IBridge
  5. {
  6. void Register(string serviceClzName, string serviceImplName);
  7. void Call(Command command);
  8. void Call(Command command, Action<Result> action);
  9. string CallWithReturnValue(Command command, Action<Result> action);
  10. }
  11. }