DATA
- processed data type.public interface Stage<DATA>
An stage is a stateless data processing unit that returns a
processing continuation
.
Modifier and Type | Interface and Description |
---|---|
static interface |
Stage.Builder<DATA>
Linear stage chain builder.
|
static class |
Stage.Continuation<DATA>
Data processing stage continuation.
|
Modifier and Type | Method and Description |
---|---|
Stage.Continuation<DATA> |
apply(DATA data)
Performs a data processing task and returns the processed data together with
a
processing continuation . |
Stage.Continuation<DATA> apply(DATA data)
processing continuation
.data
- data to be transformed.Copyright © 2007-2023, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.