title |
---|
Flows-101 |
Almost every runtime has a main thread. Whatever code you write, it's executed by that thread unless specified otherwise.
In metz, that's not the case. If you want something executed, you need to create a "thread". If you don't, things simply don't run.
In metz, a flow captures the idea of a thread. It's not exactly that, but there's good overlap.
For example, here are two story scripts. One does nothing, and the other works:
const service = new AuthenticationService();
/*
* This code will have no effect.
*/
service.authenticate('123');
const service = new AuthenticationService();
service.isDatabaseDown = true;
/*
* Will actually start executing 'authenticate'.
*/
std.flow("Authenticate user", service).authenticate('123').run();
Unlike threads, flows have an identity that you provide. It's not a nameless, behind the scene thing executing your code. Flows are front and center.
In PRDs, or even Design Documents you might have come across the term 'Flow'. Something like 'User login' flow or 'Use Cache' flow.
In those documents, a flow represents a sequence of events that occur under that context. Mind you, the flow is a small part of a larger picture, it doesn't tell the full story. We could be talking about a PRD to launch referrals or a Design Document about data pipelines.
We choosing the same terminology in metz is not serendipitous. It's called a flow in metz to capture this exact meaning.
A business or logical flow, and a metz flow are meant to be exactly the same.
Once again, as is the case with PRDs and Design documents, a flow is a small part of a larger design.A story can be talking about 'User accepts referral', and it can contain a flow called 'User signs up'. And the signup flow will kick off
a chain of events, data getting passed around, but all under the context of 'User signs up'.
Which in turn is happening in service of a user accepting a referral.
The story could change to 'User refuses referral', and the 'User signs up' flow will still kick off and do its job.
You can see how flows interact with each other and the system: <video muted playsInline controls className="w-full aspect-video" src="/videos/flws.mp4"
You can create a flow through the following syntax:
std.flow(
"<name of the flow>",
main, // An instance of a class.
)
.hello() // Simply call the method you want to run.
.run(); // Normal flows are not eagerly executed, call 'run' when you want.
If the answer is yes to all the question and it still doesn't work, please create an issue on github. Or for a swifter response, join our slack and we will get on it right away.
There's so much more to flows but we will stop here for now and dig deeper in Flows-102 later.
And with that, we have learnt the basic building blocks of metz. Go to the [playground](https://app.metz.sh/try) to try those things, but come back soon!
In the next section we will cover how to go beyond just one class and file.