-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* updating poms for 9.5.3-SNAPSHOT development * updating poms for branch'release/9.5.2' with non-snapshot versions * updating develop poms to master versions to avoid merge conflicts * Updating develop poms back to pre merge state * simplify api for using MultiJoinBuilder * simplify api for using merge and Map. Merge and map now supports merging to an instance, previously was only a factory * add correct @SafeVarargs suppression * code tidy * move next release version to 9.6.0 * Feature/multi push function (#333) * initial work on pushing multiple data flows to a single node instance method with multiple parameters. Each flow maps to a method argument * remove unused BiPushFunctionOLD.java * remove debug from tests * support 3 and 4 argument push helper in DataFlow * Added test checking triggering of child node to a multi arg push method on parent --------- Co-authored-by: greg <[email protected]> --------- Co-authored-by: runner <runner@fv-az1501-311> Co-authored-by: greg <[email protected]>
- Loading branch information
1 parent
6cda28e
commit 69672c3
Showing
25 changed files
with
1,645 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
/* | ||
* SPDX-FileCopyrightText: © 2024 Gregory Higgins <[email protected]> | ||
* SPDX-License-Identifier: AGPL-3.0-only | ||
* Copyright (c) 2025 gregory higgins. | ||
* All rights reserved. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the Server Side Public License, version 1, | ||
* as published by MongoDB, Inc. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* Server Side Public License for more details. | ||
* | ||
* You should have received a copy of the Server Side Public License | ||
* along with this program. If not, see | ||
* <http://www.mongodb.com/licensing/server-side-public-license>. | ||
*/ | ||
|
||
package com.fluxtion.compiler.builder.dataflow; | ||
|
@@ -106,8 +119,6 @@ public <R> FlowBuilder<List<R>> mapToList(SerializableFunction<T, R> mapFunction | |
|
||
public <S, R> FlowBuilder<R> mapBiFunction(SerializableBiFunction<T, S, R> int2IntFunction, | ||
FlowBuilder<S> stream2Builder) { | ||
|
||
TriggeredFlowFunction<T> e1 = eventStream; | ||
return new FlowBuilder<>( | ||
new BinaryMapToRefFlowFunction<>( | ||
eventStream, stream2Builder.eventStream, int2IntFunction) | ||
|
Oops, something went wrong.