File tree Expand file tree Collapse file tree
fluent/spec/src/main/java/io/serverlessworkflow/fluent/spec/dsl Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -89,18 +89,6 @@ public final SELF one(Consumer<EVENT_FILTER> filter) {
8989 return self ();
9090 }
9191
92- /**
93- * Applies the configured event consumption strategy to a raw builder. This is useful when the
94- * strategy needs to be used outside of a listen task, such as in a workflow schedule.
95- */
96- public final void acceptStrategyInto (LISTEN_TO toBuilder ) {
97- Objects .requireNonNull (strategyStep , "listening strategy must be set (all/any/one)" );
98- strategyStep .accept (toBuilder );
99- if (untilStep != null ) {
100- untilStep .accept (toBuilder );
101- }
102- }
103-
10492 protected final void acceptInto (LISTEN_TASK listenTaskBuilder ) {
10593 Objects .requireNonNull (strategyStep , "listening strategy must be set (all/any/one)" );
10694 toInvoker .to (
You can’t perform that action at this time.
0 commit comments