All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.backendless.rt.RTMethodRequest Maven / Gradle / Ivy

The newest version!
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;
  }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy