diff options
author | Zhidao HONG <z.hong@f5.com> | 2024-04-18 18:16:01 +0800 |
---|---|---|
committer | Zhidao HONG <z.hong@f5.com> | 2024-08-20 09:17:23 +0800 |
commit | 2eecee7520558a8f72e98e839a77330712a946b4 (patch) | |
tree | ad98b468f69f3575eec232a5e30faeea8b86fbc6 /src/nxt_tstr.h | |
parent | 76489fb7e0ab9142651b91ee8072c6cda270dd09 (diff) | |
download | unit-2eecee7520558a8f72e98e839a77330712a946b4.tar.gz unit-2eecee7520558a8f72e98e839a77330712a946b4.tar.bz2 |
var: Restrict nxt_tstr_query() to only support synchronous operation
Initially, variable query was designed to accomodate both synchronous
and asynchronous operations. However, upon consideration of actual
requirements, we recognized that asynchronous support was not needed.
The refactoring ensures that the success or failure of the variable
query operation is now directly indicated by its return value. This
change streamlines the function's usage and enhances code clarity,
as it facilitates immediate error handling without the need for
asynchronous callbacks or additional error checking functions.
Note the patch only works for Unit native variables but not njs
variables.
Diffstat (limited to '')
-rw-r--r-- | src/nxt_tstr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nxt_tstr.h b/src/nxt_tstr.h index a156732d..574b4281 100644 --- a/src/nxt_tstr.h +++ b/src/nxt_tstr.h @@ -50,8 +50,8 @@ void nxt_tstr_str(nxt_tstr_t *tstr, nxt_str_t *str); nxt_int_t nxt_tstr_query_init(nxt_tstr_query_t **query_p, nxt_tstr_state_t *state, nxt_tstr_cache_t *cache, void *ctx, nxt_mp_t *mp); -void nxt_tstr_query(nxt_task_t *task, nxt_tstr_query_t *query, nxt_tstr_t *tstr, - nxt_str_t *val); +nxt_int_t nxt_tstr_query(nxt_task_t *task, nxt_tstr_query_t *query, + nxt_tstr_t *tstr, nxt_str_t *val); nxt_bool_t nxt_tstr_query_failed(nxt_tstr_query_t *query); void nxt_tstr_query_resolve(nxt_task_t *task, nxt_tstr_query_t *query, void *data, nxt_work_handler_t ready, nxt_work_handler_t error); |