com.backendless.servercode.extension.CacheExtender Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Provides access to Backendless API
The newest version!
package com.backendless.servercode.extension;
import com.backendless.servercode.ExecutionResult;
import com.backendless.servercode.RunnerContext;
public abstract class CacheExtender
{
public void beforePut( RunnerContext context, String key, Object value, Integer ttl ) throws Exception
{
}
public void afterPut( RunnerContext context, String key, Object value, Integer ttl, ExecutionResult result ) throws Exception
{
}
public void beforeGet( RunnerContext context, String key ) throws Exception
{
}
public void afterGet( RunnerContext context, String key, ExecutionResult
© 2015 - 2025 Weber Informatics LLC | Privacy Policy