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

com.backendless.hive.HiveGeneralForComplexStore Maven / Gradle / Ivy

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