Bolt Module
Functions and values
| Function or value |
Description
|
|
|
|
define a bolt that auto-acks mkArgs: curried construction of arguments (log and conf applied only once) that will be passed into each next() call. consume: bolt function that will receive incoming tuples.
|
Full Usage:
runAsync mkArgs consume
Parameters:
(LogLevel -> string -> unit) -> Conf -> 't -> ('t -> unit) -> 'a
consume : AsyncConsume<'a>
Returns: Bolt<'t>
Type parameters: 't, 'a |
define an async bolt that auto-acks mkArgs: curried construction of arguments (log and conf applied only once) that will be passed into each consume() call. consume: async bolt function that will receive incoming tuples.
|
|
define a bolt that always nacks mkArgs: curried construction of arguments (log and conf applied only once) that will be passed into each next() call. consume: bolt function that will receive incoming tuples.
|
Full Usage:
runTerminatorAsync mkArgs consume
Parameters:
(LogLevel -> string -> unit) -> Conf -> 't -> 'a
consume : AsyncConsume<'a>
Returns: Bolt<'t>
Type parameters: 't, 'a |
define an async bolt that always nacks mkArgs: curried construction of arguments (log and conf applied only once) that will be passed into each consume() call. consume: async bolt function that will receive incoming tuples.
|
FsShelter