mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
32 lines
624 B
Plaintext
32 lines
624 B
Plaintext
-- BEFORE
|
|
<await(user from data.userInfoShort)
|
|
timeout=500
|
|
name="userInfo1">
|
|
|
|
<await-timeout>
|
|
1-A timeout has occurred!
|
|
</await-timeout>
|
|
1
|
|
</await>
|
|
<await(user from data.userInfoShort)
|
|
timeout-message="2-A timeout has occurred!"
|
|
timeout=500
|
|
name="userInfo2">
|
|
2
|
|
</await>
|
|
<await(user from data.userInfoLong)
|
|
timeout-message="3-A timeout has occurred!"
|
|
timeout=900
|
|
name="userInfo3">
|
|
3
|
|
</await>
|
|
<await(user from data.userInfoLong)
|
|
timeout=900
|
|
name="userInfo4">
|
|
|
|
<await-timeout>
|
|
4-A timeout has occurred!
|
|
</await-timeout>
|
|
4
|
|
</await>
|
|
-- AFTER |