Skip to content

Commit 83b211e

Browse files
Stubs for respecting pushbak facade being interface
1 parent 6b261a8 commit 83b211e

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

procedures/pushback-procedures-facade/src/main/java/org/neo4j/gds/procedures/algorithms/pathfinding/PushbackPathFindingProcedureFacade.java

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,21 +269,53 @@ public Stream<MaxFlowMutateResult> maxFlowMutate(String graphName, Map<String, O
269269
return mutateProcedureFacade.maxFlow(graphName, configuration);
270270
}
271271

272+
@Override
273+
public Stream<MemoryEstimateResult> maxFlowMutateEstimate(
274+
Object graphNameOrConfiguration,
275+
Map<String, Object> algorithmConfiguration
276+
) {
277+
return Stream.empty();
278+
}
279+
272280
@Override
273281
public Stream<MaxFlowStreamResult> maxFlowStream(String graphName, Map<String, Object> configuration) {
274282
return streamProcedureFacade.maxFlow(graphName, configuration);
275283
}
276284

285+
@Override
286+
public Stream<MemoryEstimateResult> maxFlowStreamEstimate(
287+
Object graphNameOrConfiguration,
288+
Map<String, Object> algorithmConfiguration
289+
) {
290+
return Stream.empty();
291+
}
292+
277293
@Override
278294
public Stream<MaxFlowStatsResult> maxFlowStats(String graphName, Map<String, Object> configuration) {
279295
return statsProcedureFacade.maxFlow(graphName, configuration);
280296
}
281297

298+
@Override
299+
public Stream<MemoryEstimateResult> maxFlowStatsEstimate(
300+
Object graphNameOrConfiguration,
301+
Map<String, Object> algorithmConfiguration
302+
) {
303+
return Stream.empty();
304+
}
305+
282306
@Override
283307
public Stream<MaxFlowWriteResult> maxFlowWrite(String graphName, Map<String, Object> configuration) {
284308
return writeProcedureFacade.maxFlow(graphName, configuration);
285309
}
286310

311+
@Override
312+
public Stream<MemoryEstimateResult> maxFlowWriteEstimate(
313+
Object graphNameOrConfiguration,
314+
Map<String, Object> algorithmConfiguration
315+
) {
316+
return Stream.empty();
317+
}
318+
287319
@Override
288320
public Stream<SpanningTreeStreamResult> prizeCollectingSteinerTreeStream(
289321
String graphName,

0 commit comments

Comments
 (0)