14 lines
259 B
C#
14 lines
259 B
C#
|
using System;
|
||
|
|
||
|
namespace TapTap.Common
|
||
|
{
|
||
|
public interface IBridge
|
||
|
{
|
||
|
void Register(string serviceClzName, string serviceImplName);
|
||
|
|
||
|
void Call(Command command);
|
||
|
|
||
|
void Call(Command command, Action<Result> action);
|
||
|
|
||
|
}
|
||
|
}
|