-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Eliminated anonymous data structures to improve readability (#271)
- Loading branch information
1 parent
ae533b9
commit 13cc043
Showing
5 changed files
with
36 additions
and
17 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
dz3r-bootstrap/src/main/java/net/sf/dz3r/runtime/config/Id2Flux.java
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package net.sf.dz3r.runtime.config; | ||
|
||
import net.sf.dz3r.signal.Signal; | ||
import reactor.core.publisher.Flux; | ||
|
||
public record Id2Flux( | ||
String id, | ||
Flux<Signal<Double, Void>> flux | ||
) { | ||
|
||
} |
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
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