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

com.arangodb.InternalKVSDriver Maven / Gradle / Ivy

There is a newer version: 7.15.0
Show newest version
package com.arangodb;

import java.util.Date;
import java.util.Map;

import com.arangodb.entity.KeyValueEntity;
import com.arangodb.impl.BaseDriverInterface;

/**
 * Created by fbartels on 10/27/14.
 */
public interface InternalKVSDriver  extends BaseDriverInterface {
  KeyValueEntity createKeyValue(
    String database,
    String collectionName, String key, Object value,
    Map attributes, Date expiredDate) throws ArangoException;

  KeyValueEntity updateKeyValue(
    String database,
    String collectionName, String key, Object value,
    Map attributes, Date expiredDate,
    boolean create
  ) throws ArangoException;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy