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()); }
public static bool CallFunction(byte[]message,FunctionReturnCallback callback) { if (message==null||callback==null||message.Length==0) return false; return iCallFunction(message,callback); }
internal static extern bool iCallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, Sirikata.Runtime.TimeClass t);
internal static extern bool iCallFunction(byte[]message,FunctionReturnCallback callback);
internal static extern bool iCallFunctionWithTimeout(byte[]message,FunctionReturnCallback callback, System.DateTime t);
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); }