@@ -477,36 +477,36 @@ After this you can transfer archive to whatever place you want, unarchive it and
477477* ` List<dynamic> key, List<StorageUpdateOperation> operations `
478478
479479## Lua - StorageLuaExecutor
480- ### [ async] ` startBackup() `
480+ ### [ async] ` startBackup() ` - Executing box.backup.start() [ see ] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_backup/start/ )
481481
482- ### [ async] ` stopBackup() `
482+ ### [ async] ` stopBackup() ` - Executing box.backup.stop() [ see ] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_backup/stop/ )
483483
484- ### [ async] ` promote() `
484+ ### [ async] ` promote() ` - Executing box.ctl.promote() [ see ] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_ctl/promote/ )
485485
486- ### [ async] ` configure() `
487- * ` StorageConfiguration configuration `
486+ ### [ async] ` configure() ` - Executing box.cfg{} [ see ] ( https://www.tarantool.io/en/doc/latest/reference/reference_lua/box_cfg/ )
487+ * ` StorageConfiguration configuration ` - Tarantool Configuration
488488
489- ### [ async] ` script() `
490- * ` String expression `
491- * [ optional] ` List<dynamic> arguments `
492- * [ return] ` List<dynamic> `
489+ ### [ async] ` script() ` - Evaluating Lua script
490+ * ` String expression ` - Script
491+ * [ optional] ` List<dynamic> arguments ` - Script arguments
492+ * [ return] ` List<dynamic> ` - Script result
493493
494- ### [ async] ` file() `
495- * ` File file `
494+ ### [ async] ` file() ` - Evaluating Lua file
495+ * ` File file ` - Lua script file
496496
497- ### [ async] ` require() `
498- * ` String module `
497+ ### [ async] ` require() ` - Calling Lua 'require' function
498+ * ` String module ` - Requiring module
499499
500- ### [ async] ` call() `
501- * ` String function `
502- * [ optional] ` List<dynamic> arguments `
503- * [ return] ` List<dynamic> `
500+ ### [ async] ` call() ` - Calling Lua function
501+ * ` String function ` - Lua function
502+ * [ optional] ` List<dynamic> arguments ` - Lua function arguments
503+ * [ return] ` List<dynamic> ` - Lua function result
504504
505505## Native - StorageNativeExecutor
506- ### [ async] ` call() `
507- * ` tarantool_function function `
508- * [ optional] ` tarantool_function_argument argument `
509- * [ return] ` Pointer<Void> `
506+ ### [ async] ` call() ` - Calling Native function
507+ * ` tarantool_function function ` - Pointer to Native function
508+ * [ optional] ` tarantool_function_argument argument ` - Pointer or Native value as function argument
509+ * [ return] ` Pointer<Void> ` - Pointer to function result
510510
511511# Configuration
512512
0 commit comments