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

com.backendless.cache.CacheService Maven / Gradle / Ivy

The newest version!
/*
 * ********************************************************************************************************************
 *  

* BACKENDLESS.COM CONFIDENTIAL *

* ******************************************************************************************************************** *

* Copyright 2012 BACKENDLESS.COM. All Rights Reserved. *

* NOTICE: All information contained herein is, and remains the property of Backendless.com and its suppliers, * if any. The intellectual and technical concepts contained herein are proprietary to Backendless.com and its * suppliers and may be covered by U.S. and Foreign Patents, patents in process, and are protected by trade secret * or copyright law. Dissemination of this information or reproduction of this material is strictly forbidden * unless prior written permission is obtained from Backendless.com. *

* ******************************************************************************************************************** */ package com.backendless.cache; import com.backendless.Backendless; import com.backendless.async.callback.AsyncCallback; import java.util.Date; public class CacheService implements ICache { private Class clazz; private String key; public CacheService( Class clazz, String key ) { this.clazz = clazz; this.key = key; } @Override public void put( T value, AsyncCallback callback ) { Backendless.Cache.put( key, value, callback ); } @Override public void put( T value, int timeToLive, AsyncCallback callback ) { Backendless.Cache.put( key, value, timeToLive, callback ); } @Override public void get( AsyncCallback callback ) { Backendless.Cache.get( key, callback ); } @Override public void contains( AsyncCallback callback ) { Backendless.Cache.contains( key, callback ); } @Override public void expireIn( int seconds, AsyncCallback callback ) { Backendless.Cache.expireIn( key, seconds, callback ); } @Override public void expireIn( int seconds ) { Backendless.Cache.expireIn( key, seconds ); } @Override public void expireAt( Date date, AsyncCallback callback ) { Backendless.Cache.expireAt( key, date, callback ); } @Override public void expireAt( long timestamp, AsyncCallback callback ) { Backendless.Cache.expireAt( key, timestamp, callback ); } @Override public void expireAt( Date date ) { Backendless.Cache.expireAt( key, date ); } @Override public void expireAt( long timestamp ) { Backendless.Cache.expireAt( key, timestamp ); } @Override public void delete( AsyncCallback callback ) { Backendless.Cache.delete( key, callback ); } @Override public void delete() { Backendless.Cache.delete( key ); } @Override public void put( T value ) { Backendless.Cache.put( key, value ); } @Override public void put( T value, int timeToLive ) { Backendless.Cache.put( key, value, timeToLive ); } @Override public T get() { return (T) Backendless.Cache.get( key, clazz ); } @Override public Boolean contains() { return Backendless.Cache.contains( key ); } }