Introduction
Basic Concepts
fluth
is a Promise-based streaming programming library that excels at orchestrating asynchronous workflows.
If we consider promise
as a publisher and the then
method as a subscriber, a promise
can only publish once.
fluth
enhances promise
by allowing it to publish continuously!
import { Stream } from "fluth";
const promise$ = new Stream();
promise$.then(
(r) => console.log("resolve", r),
(e) => console.log("reject", e)
);
promise$.next(1);
promise$.next(Promise.reject(2));
promise$.next(3);
// Logs:
// resolve 1
// reject 2
// resolve 3
Compared to other streaming programming libraries, fluth focuses more on handling asynchronous workflow scenarios. With fluth
, you can easily organize asynchronous logic in a streaming way, making code semantics and timing more clear.
Applicable Scenarios
fluth
was created to solve reactive asynchronous programming problems.
In reactive programming, asynchronous operations often modify reactive data, and business code handles asynchronous logic by listening to data changes. However, organizing code by listening to data changes brings two problems: 1. Difficult to read, 2. Timing chaos.
Listening to data lacks semantics and loses context, making code difficult to read. Even simple business code becomes increasingly costly to maintain. The timing of asynchronous workflows in complex business logic is also very complex, and controlling timing becomes difficult when listening to data changes.
promise
can actually solve these two problems well. Putting each step of processing in then
means there is a line connecting all the logic together. Any node can be semantically named, making it very easy to read code and organize logic. Since each piece of logic is processed serially from top to bottom, another benefit is simple timing management.
However, promise
can only execute once and cannot be stopped midway. fluth
solves these problems of promise
. You can think of fluth
as a promise
stream that can continuously publish data. Any then
node in the middle can subscribe to upstream data and can also unsubscribe.
After adopting fluth
, the original web-like reactive logic becomes traceable streaming logic:
Comparison with rxjs
rxjs is the current mainstream streaming programming library. Compared with fluth
, there are two obvious differences:
fluth
is very easy to get started with - if you know how to usepromise
, you can use itrxjs
has more powerful capabilities in data processing, whilefluth
focuses more on observer orchestration:rxjs
has richoperators
to implement powerful data processing capabilities, butobservers
are concurrentfluth
is based onpromise
and is better at orchestratingobservers
// rxjs:
stream$.pipe(operator1).pipe(operator2).pipe(operator3);
stream$.subscribe(observer1);
stream$.subscribe(observer2);
stream$.subscribe(observer3);
//fluth:
stream$.then(observer1).then(observer2).then(observer3);
stream$.next(1);