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