Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"runtime_name": "http::control::respond",
"runtime_parameter_definitions": [
{
"data_type_identifier": {
"type": {
"DataTypeIdentifier": "HTTP_RESPONSE"
}
},
"runtime_name": "http_response",
"default_value": null,
"name": [
{
"code": "en-US",
"content": "Http Response"
}
],
"description": [
{
"code": "en-US",
"content": "The response object that will be returned to the client."
}
],
"documentation": [
{
"code": "en-US",
"content": "Takes an HTTP response object and transmits it to the requesting client. This parameter represents the final output of the server, including headers, status code, and body content."
}
]
}
],
"return_type_identifier": null,
"deprecation_message": [],
"name": [
{
"code": "en-US",
"content": "Respond"
}
],
"description": [
{
"code": "en-US",
"content": "Handles an HTTP response object and returns it to the client."
}
],
"documentation": [
{
"code": "en-US",
"content": "Processes an HTTP response and returns it to the requesting client. This function typically completes the HTTP request–response cycle by delivering the server’s final output, such as headers, status codes, and body content, back to the client."
}
],
"throws_error": false,
"generic_keys": []
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,8 @@

## Added
- break

16.10.2025

## Renamed
break -> stop

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"description": [
{
"code": "en-US",
"content": "The value to be returned."
"content": "The value to be returned to the upper context."
}
],
"documentation": [
{
"code": "en-US",
"content": "This value will be returned to the upper context."
"content": "Specifies the value that will be returned to the upper context. When this node executes, it immediately halts the iteration and passes the value upward."
}
]
}
Expand All @@ -47,14 +47,14 @@
"description": [
{
"code": "en-US",
"content": "Returns the specified value to the upper context."
"content": "Returns a value and terminates the current context."
}
],
"documentation": [
{
"code": "en-US",
"content": "Returns the specified value to the upper context."
"content": "Ends the current context and returns the specified value to the upper scope. This node behaves like a standard 'return' statement in programming languages, stopping further execution within the current flow."
}
],
"deprecation_message": []
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"runtime_name": "std::control::stop",
"runtime_parameter_definitions": [],
"return_type_identifier": null,
"throws_error": false,
"generic_keys": [],
"name": [
{
"code": "en-US",
"content": "Stop"
}
],
"description": [
{
"code": "en-US",
"content": "Completely stops the current context and prevents any further iterations."
}
],
"documentation": [
{
"code": "en-US",
"content": "Terminates the current execution context entirely, halting all ongoing and future iterations. Once invoked, no additional steps or loops within this context will be executed. This node behaves like a global stop or termination signal within the flow."
}
],
"deprecation_message": []
}