Class RawStage
java.lang.Object
com.google.cloud.firestore.pipeline.stages.Stage
com.google.cloud.firestore.pipeline.stages.RawStage
Adds a stage to the pipeline by specifying the stage name as an argument. This does not offer any
type safety on the stage params and requires the caller to know the order (and optionally names)
of parameters accepted by the stage.
This class provides a way to call stages that are supported by the Firestore backend but that are not implemented in the SDK version being used.
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic RawStageSpecify name of stagewithArguments(Object... arguments) Specify arguments to stage.withOptions(RawOptions options)
-
Method Details
-
ofName
Specify name of stage- Parameters:
name- The unique name of the stage to add.- Returns:
- A new
RawStagefor the specified stage name.
-
withArguments
Specify arguments to stage.- Parameters:
arguments- A list of ordered parameters to configure the stage's behavior.- Returns:
RawStagewith specified parameters.
-
withOptions
-