Skip to content

Commit

Permalink
javadocs for ExplicitIndexWrite
Browse files Browse the repository at this point in the history
  • Loading branch information
pontusmelke committed Nov 25, 2017
1 parent d3ae750 commit 1e2cc56
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,23 @@

import org.neo4j.internal.kernel.api.exceptions.KernelException;

/**
* Operations for creating and modifying explicit indexes.
*/
public interface ExplicitIndexWrite
{
/**
* Removes a given node from an explicit index
*
* @param indexName The name of the index from which the node is to be removed.
* @param node The node id of the node to remove
*/
void nodeRemoveFromExplicitIndex( String indexName, long node ) throws KernelException;

/**
* Creates an explicit index in a separate transaction if not yet available.
* @param indexName The name of the index to create.
* @param customConfig The configuration of the explicit index.
*/
void nodeExplicitIndexCreateLazily( String indexName, Map<String, String> customConfig );
}

0 comments on commit 1e2cc56

Please sign in to comment.