com.backendless.rt.RTMethodRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backendless Show documentation
Show all versions of backendless Show documentation
Android SDK used by developers to provide Backendless API in apps.
package com.backendless.rt;
public class RTMethodRequest extends AbstractRequest
{
private final MethodTypes methodType;
public RTMethodRequest( MethodTypes methodType, RTCallback callback )
{
super( callback );
this.methodType = methodType;
}
@Override
public String getName()
{
return methodType.name();
}
public MethodTypes getMethodType()
{
return methodType;
}
}