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

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

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