Package org.gradle.api.flow
Interface FlowActionSpec<P extends FlowParameters>
-
- Type Parameters:
P
- the parameters defined by the configureddataflow action
type.
@Incubating public interface FlowActionSpec<P extends FlowParameters>
Allows configuring the parameters for adataflow action
.- Since:
- 8.1
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description P
getParameters()
Returns the parameters defined by the configureddataflow action
.void
parameters(Action<? super P> configureAction)
Configures theparameters
for theflow action
.
-
-
-
Method Detail
-
getParameters
P getParameters()
Returns the parameters defined by the configureddataflow action
.- Returns:
- mutable parameters object, never null.
- Since:
- 8.1
-
parameters
void parameters(Action<? super P> configureAction)
Configures theparameters
for theflow action
.- Since:
- 8.7
-
-