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

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

There is a newer version: 7.0-alpha
Show 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 - 2024 Weber Informatics LLC | Privacy Policy