AndThen
oxygen.zio.SparseStreamAggregator.AndThen
final case class AndThen[_RawInput1, _Output1, _RawInput2, _Output2, _ZipInput, _ZipOutput](_1: SparseStreamAggregator[_RawInput1, _Output1], _2: SparseStreamAggregator[_RawInput2, _Output2], zipInput: Out[_RawInput1, _RawInput2, _ZipInput], zipOutput: Out[_Output1, _Output2, _ZipOutput]) extends SparseStreamAggregator[_ZipInput, _ZipOutput]
Attributes
- Graph
-
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Members list
Type members
Inherited types
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Value members
Concrete methods
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Attributes
- Definition Classes
Inherited methods
final def *:[RawInput2, Output2](that: SparseStreamAggregator[RawInput2, Output2])(using zipInput: Zip[RawInput2, RawInput], zipOutput: Zip[Output2, Output]): SparseStreamAggregator[zipInput.Out, zipOutput.Out]
Note: When combining multiple aggs, the LHS will be eagerly emitted. This means that if you do (a *: b) *: c
instead of a *: b *: c
(which is the same as a *: (b *: c)
, then you will get errors, because it will be impossible to ever get a c
.
Note: When combining multiple aggs, the LHS will be eagerly emitted. This means that if you do (a *: b) *: c
instead of a *: b *: c
(which is the same as a *: (b *: c)
, then you will get errors, because it will be impossible to ever get a c
.
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- SparseStreamAggregator
Attributes
- Inherited from:
- Product
Attributes
- Inherited from:
- Product
In this article