| BatchTIn, TOut Constructor |
TBD
Namespace:
Akka.Streams.Implementation.Fusing
Assembly:
Akka.Streams (in Akka.Streams.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax public Batch(
long max,
Func<TIn, long> costFunc,
Func<TIn, TOut> seed,
Func<TOut, TIn, TOut> aggregate
)
new :
max : int64 *
costFunc : Func<'TIn, int64> *
seed : Func<'TIn, 'TOut> *
aggregate : Func<'TOut, 'TIn, 'TOut> -> Batch
Parameters
- max
- Type: SystemInt64
TBD - costFunc
- Type: SystemFuncTIn, Int64
TBD - seed
- Type: SystemFuncTIn, TOut
TBD - aggregate
- Type: SystemFuncTOut, TIn, TOut
TBD
See Also