Package org.neo4j.gds.executor
Interface AlgorithmSpec<ALGO extends org.neo4j.gds.Algorithm<ALGO_RESULT>,ALGO_RESULT,CONFIG extends org.neo4j.gds.config.AlgoBaseConfig,RESULT,ALGO_FACTORY extends org.neo4j.gds.AlgorithmFactory<?,ALGO,CONFIG>>
-
public interface AlgorithmSpec<ALGO extends org.neo4j.gds.Algorithm<ALGO_RESULT>,ALGO_RESULT,CONFIG extends org.neo4j.gds.config.AlgoBaseConfig,RESULT,ALGO_FACTORY extends org.neo4j.gds.AlgorithmFactory<?,ALGO,CONFIG>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description ALGO_FACTORYalgorithmFactory()ComputationResultConsumer<ALGO,ALGO_RESULT,CONFIG,RESULT>computationResultConsumer()default ProcedureExecutorSpec<ALGO,ALGO_RESULT,CONFIG>createDefaultExecutorSpec()java.lang.Stringname()NewConfigFunction<CONFIG>newConfigFunction()default ValidationConfiguration<CONFIG>validationConfig()default AlgorithmSpec<ALGO,ALGO_RESULT,CONFIG,RESULT,ALGO_FACTORY>withModelCatalog(org.neo4j.gds.core.model.ModelCatalog modelCatalog)
-
-
-
Method Detail
-
name
java.lang.String name()
-
algorithmFactory
ALGO_FACTORY algorithmFactory()
-
newConfigFunction
NewConfigFunction<CONFIG> newConfigFunction()
-
computationResultConsumer
ComputationResultConsumer<ALGO,ALGO_RESULT,CONFIG,RESULT> computationResultConsumer()
-
validationConfig
default ValidationConfiguration<CONFIG> validationConfig()
-
withModelCatalog
default AlgorithmSpec<ALGO,ALGO_RESULT,CONFIG,RESULT,ALGO_FACTORY> withModelCatalog(org.neo4j.gds.core.model.ModelCatalog modelCatalog)
-
createDefaultExecutorSpec
default ProcedureExecutorSpec<ALGO,ALGO_RESULT,CONFIG> createDefaultExecutorSpec()
-
-