Exemplo n.º 1
0
 /// <summary>
 /// 调用
 /// </summary>
 private IEnumerator execute <T>(BmobCommand <T> command, BmobCallback <T> callback)
 {
     return(command.execute <IEnumerator>(Request, callback));
 }
Exemplo n.º 2
0
 internal override void submit <T>(BmobCommand <T> command, BmobCallback <T> callback)
 {
     this.go.StartCoroutine(execute <T>(command, callback));
 }
Exemplo n.º 3
0
 internal override void submit <T>(BmobCommand <T> command, BmobCallback <T> callback)
 {
     requests.Add(command.getReceiver());
 }
Exemplo n.º 4
0
 internal abstract void submit <T>(BmobCommand <T> command, BmobCallback <T> callback);
Exemplo n.º 5
0
 internal override void submit <T>(BmobCommand <T> command, BmobCallback <T> callback)
 {
     command.execute <int>(Request, callback);
 }