示例#1
0
 public static bool CallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, Sirikata.Runtime.Time t)
 {
     if (message==null||callback==null||message.Length==0)
     return false;
     return iCallFunctionWithTimeout(message,callback,t.toClass());
 }
示例#2
0
 public static bool CallFunction(byte[]message,FunctionReturnCallback callback)
 {
     if (message==null||callback==null||message.Length==0)
     return false;
     return iCallFunction(message,callback);
 }
示例#3
0
 internal static extern bool iCallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, Sirikata.Runtime.TimeClass t);
示例#4
0
 internal static extern bool iCallFunction(byte[]message,FunctionReturnCallback callback);
示例#5
0
 internal static extern bool iCallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, System.DateTime t);
示例#6
0
 public static bool CallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, System.DateTime t)
 {
     if (message==null||callback==null||message.Length==0)
     return false;
     return iCallFunctionWithTimeout(message,callback,t);
 }