com.backendless.hive.HiveGeneralForKeyValue 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.hive;
import java.util.concurrent.CompletableFuture;
abstract class HiveGeneralForKeyValue extends HiveGeneral
{
HiveGeneralForKeyValue( String hiveName, StoreType storeType )
{
super( hiveName, storeType, null );
}
@Override
public CompletableFuture delete( String key )
{
return super.delete( key );
}
@Override
public CompletableFuture rename( String key, String newKey, boolean overwrite )
{
return super.rename( key, newKey, overwrite );
}
@Override
public CompletableFuture expireAfter( String key, Integer ttlSeconds )
{
return super.expireAfter( key, ttlSeconds );
}
@Override
public CompletableFuture expireAt( String key, Integer unixTimeSeconds )
{
return super.expireAt( key, unixTimeSeconds );
}
@Override
public CompletableFuture getExpiration( String key )
{
return super.getExpiration( key );
}
@Override
public CompletableFuture clearExpiration( String key )
{
return super.clearExpiration( key );
}
@Override
public CompletableFuture secondsSinceLastOperation( String key )
{
return super.secondsSinceLastOperation( key );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy