即时通信之Bmob开发01

cn.bmob.v3 
类 AsyncCustomEndpoints

java.lang.Object
  cn.bmob.v3.AsyncCustomEndpoints

public class AsyncCustomEndpoints
extends java.lang.Object

云端代码操作类

作者:
BmobTeam

构造方法摘要
AsyncCustomEndpoints() 
           
 
方法摘要
 void callEndpoint(Context context, java.lang.String mosth, CloudCodeListener listener) 
          调用云端代码
 void callEndpoint(Context context, java.lang.String mosth, JSONObject cloudCodeParams, CloudCodeListener listener) 
          调用云端代码
 
从类 java.lang.Object 继承的方法
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

AsyncCustomEndpoints

public AsyncCustomEndpoints()
方法详细信息

callEndpoint

public void callEndpoint(Context context,
                         java.lang.String mosth,
                         CloudCodeListener listener)
调用云端代码

参数:
context - 应用程序上下文
mosth - 云端代码方法方法名
listener - 云端代码响应监听器

callEndpoint

public void callEndpoint(Context context,
                         java.lang.String mosth,
                         JSONObject cloudCodeParams,
                         CloudCodeListener listener)
调用云端代码

参数:
context - 应用程序上下文
mosth - 云端代码方法方法名
cloudCodeParams - 云端代码参数
listener - 云端代码响应监听器

你可能感兴趣的:(ANDROID)