From 32e92a25fa6acd5582a39def76a58258719a1203 Mon Sep 17 00:00:00 2001 From: NEVSTOP Date: Thu, 9 Jan 2025 22:21:54 +0800 Subject: [PATCH] remove backup.md --- _notes/backup.md | 133 ----------------------------------------------- 1 file changed, 133 deletions(-) delete mode 100644 _notes/backup.md diff --git a/_notes/backup.md b/_notes/backup.md deleted file mode 100644 index 12e5e51..0000000 --- a/_notes/backup.md +++ /dev/null @@ -1,133 +0,0 @@ -#### Build Message with Arguments(Auto Check).vi - -- For Example: - -If State with Arguments input is "API: DoSth" -- Arguments ("") input is "Arguments" -- Target Module ("") input is "Callee" -Then result string is "API: DoSth >> Arguments" as no message symbol is detected. - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments -> Callee" - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth >> NewArguments -> NewCallee" - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth -> NewCallee" - -If State with Arguments input is "API: DoSth >> Arguments -@ Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments -@ Callee" - -#### Build Synchronous Message with Arguments.vi - -- For Example: - -If State with Arguments input is "API: DoSth" -- Arguments ("") input is "Arguments" -- Target Module ("") input is "Callee" -Then result string is "API: DoSth >> Arguments ->| Callee". It's different with Build Message with Arguments(Auto Check).vi. Message Type Symbol is replaced with "-@". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments ->| Callee". Message Type Symbol is replaced with "-@". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth >> NewArguments -@ NewCallee". Message Type Symbol is replaced with "-@". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth -@ NewCallee". Message Type Symbol is replaced with "-@". - -If State with Arguments input is "API: DoSth >> Arguments -@ Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments -@ Callee". - -#### Build Asynchronous Message with Arguments.vi - -- For Example: - -If State with Arguments input is "API: DoSth" -- Arguments ("") input is "Arguments" -- Target Module ("") input is "Callee" -Then result string is "API: DoSth >> Arguments -> Callee". It's different with Build Message with Arguments(Auto Check).vi. . Message Type Symbol is replaced with "->". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments -> Callee" - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth >> NewArguments -> NewCallee" - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth -> NewCallee" - -If State with Arguments input is "API: DoSth >> Arguments -@ Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments -> Callee". Message Type Symbol is replaced with "->". - -#### Build No-Reply Asynchronous Message with Arguments.vi - -- For Example: - -If State with Arguments input is "API: DoSth" -- Arguments ("") input is "Arguments" -- Target Module ("") input is "Callee" -Then result string is "API: DoSth >> Arguments ->| Callee". It's different with Build Message with Arguments(Auto Check).vi. Message Type Symbol is replaced with "->|". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments ->| Callee". Message Type Symbol is replaced with "->|". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth >> NewArguments ->| NewCallee". Message Type Symbol is replaced with "->|". - -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -- Arguments ("") input is "" -- Target Module ("") input is "NewCallee" -Then result string is "API: DoSth ->| NewCallee". Message Type Symbol is replaced with "->|". - -If State with Arguments input is "API: DoSth >> Arguments -@ Callee" -- Arguments ("") input is "NewArguments" -- Target Module ("") input is "" -Then result string is "API: DoSth >> NewArguments ->| Callee". Message Type Symbol is replaced with "->|". - -#### Build Normal Status Message.vi - -- For Example: -If State with Arguments input is "API: DoSth" -Then result string is "API: DoSth >> Arguments" as no message symbol is detected. -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -Then result string is "API: DoSth >> NewArguments -> Callee" -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -Then result string is "API: DoSth >> NewArguments -> NewCallee" -If State with Arguments input is "API: DoSth >> Arguments -> Callee" -Then result string is "API: DoSth -> NewCallee" -If State with Arguments input is "API: DoSth >> Arguments -@ Callee" -Then result string is "API: DoSth >> NewArguments -@ Callee" -- State with Arguments: Input Message which might contain Arguments or target Module -- Arguments (""): The arguments which will be used to replace arguments in State with Arguments. if empty, no arguments will be included in output strings. -- Target Module (""): The target which will be used to replace target in State with Arguments. if empty, target in State with Arguments will be used. -- State with Arguments: String stands for state with arguments \ No newline at end of file