您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
22 行
538 B
22 行
538 B
using UnityEngine;
|
|
using System.Collections.Generic;
|
|
|
|
namespace HuaweiService
|
|
{
|
|
public class ExecutorData : IHmsBaseListener
|
|
{
|
|
public string name => "java.util.concurrent.Executor";
|
|
public string buildName => "";
|
|
}
|
|
public class Executor : HmsListener<ExecutorData>
|
|
{
|
|
|
|
public virtual void execute(Runnable arg0) {
|
|
Call("execute", arg0);
|
|
}
|
|
|
|
public void execute(AndroidJavaObject arg0){
|
|
execute(HmsUtil.GetHmsBase<Runnable>(arg0));
|
|
}
|
|
}
|
|
}
|