Transformation execution strategies.
| Enumerator |
|---|
| IN_PLACE | Transform data in-place (modifies input)
|
| BUFFERED | Create transformed copy (preserves input)
|
| STREAMING | Stream-based transformation for large data.
|
| INCREMENTAL | Progressive transformation with intermediate results.
|
| LAZY | Lazy evaluation transformation (future: coroutines)
|
| CHUNKED | Transform in chunks for efficient processing.
|
| PARALLEL | Parallel/concurrent transformation.
|
| RECURSIVE | Recursive transformation with feedback.
|