com.backendless.servercode.extension.CustomEventHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
Android SDK used by developers to provide Backendless API in apps.
package com.backendless.servercode.extension;
import com.backendless.servercode.RunnerContext;
import java.util.Map;
/**
* Created with IntelliJ IDEA.
* User: Eugene Chipachenko
* Date: 24.06.14
* Time: 16:03
*/
public abstract class CustomEventHandler
{
public Map handleEvent( RunnerContext context, Map eventArgs )
{
return null;
}
}