升级 SpacetimeDB 到 2.4.1
更新 server-rs SpacetimeDB crate 锁定版本与 Cargo.lock。 刷新 spacetime-client 生成绑定到 2.4.1。 同步 dev 脚本、容器、Jenkins 和运维文档中的 STDB 版本。 补充 dev 脚本版本校验测试,兼容 Cargo 精确版本要求。
This commit is contained in:
@@ -1889,7 +1889,7 @@
|
|||||||
|
|
||||||
- 现象:`http://127.0.0.1:3001/` 打不开,但 `3000 / 3101 / 8082` 仍有进程;`npm run dev` 直接退出,没有把新栈拉起来。
|
- 现象:`http://127.0.0.1:3001/` 打不开,但 `3000 / 3101 / 8082` 仍有进程;`npm run dev` 直接退出,没有把新栈拉起来。
|
||||||
- 原因:旧 worktree 的 `api-server`、`spacetime-standalone` 和 Vite 还活着,或者当前 worktree 的本机 SpacetimeDB CLI 默认版本低于仓库锁定版本,`scripts/dev.mjs` 会先校验版本再启动并直接报错退出。
|
- 原因:旧 worktree 的 `api-server`、`spacetime-standalone` 和 Vite 还活着,或者当前 worktree 的本机 SpacetimeDB CLI 默认版本低于仓库锁定版本,`scripts/dev.mjs` 会先校验版本再启动并直接报错退出。
|
||||||
- 处理:先停掉占用端口的旧进程,再执行 `spacetime version list` 和 `spacetime version use 2.3.0`,确认本机 CLI/standalone 与仓库一致后重新启动 `npm run dev -- --no-interactive --web-port 3001 --api-port 8083 --spacetime-port 3103 --admin-web-port 3104`。
|
- 处理:先停掉占用端口的旧进程,再执行 `spacetime version list` 和 `spacetime version use 2.4.1`,确认本机 CLI/standalone 与仓库一致后重新启动 `npm run dev -- --no-interactive --web-port 3001 --api-port 8083 --spacetime-port 3103 --admin-web-port 3104`。
|
||||||
- 验证:`http://127.0.0.1:3001/`、`http://127.0.0.1:8083/healthz`、`http://127.0.0.1:3103/v1/ping` 都返回 200,且进程命令行指向当前 worktree 路径而不是别的仓库。
|
- 验证:`http://127.0.0.1:3001/`、`http://127.0.0.1:8083/healthz`、`http://127.0.0.1:3103/v1/ping` 都返回 200,且进程命令行指向当前 worktree 路径而不是别的仓库。
|
||||||
- 关联:`scripts/dev.mjs`、`.hermes/shared-memory/pitfalls.md`、`docs/【开发运维】本地开发验证与生产运维-2026-05-15.md`。
|
- 关联:`scripts/dev.mjs`、`.hermes/shared-memory/pitfalls.md`、`docs/【开发运维】本地开发验证与生产运维-2026-05-15.md`。
|
||||||
|
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ Genarrative / 陶泥儿是一个 AI 原生互动内容与小游戏平台,把 A
|
|||||||
server-rs + Axum + SpacetimeDB
|
server-rs + Axum + SpacetimeDB
|
||||||
```
|
```
|
||||||
|
|
||||||
当前 SpacetimeDB crate、SDK、CLI / standalone、生成 bindings 和容器压测镜像统一按 `2.3.0` 对齐。
|
当前 SpacetimeDB crate、SDK、CLI / standalone、生成 bindings 和容器压测镜像统一按 `2.4.1` 对齐。
|
||||||
|
|
||||||
职责边界:
|
职责边界:
|
||||||
|
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ Linux Docker Engine 若要从宿主机 CLI 连到容器内服务,直接用 `ht
|
|||||||
|
|
||||||
## 构建工具链
|
## 构建工具链
|
||||||
|
|
||||||
`api-server` 容器镜像只构建 Linux release API 二进制,不构建 `spacetime-module`。当前 `api-server -> spacetime-client -> spacetimedb-sdk 2.3.0` 依赖链要求 Rust 1.93,因此 `deploy/container/api-server.Dockerfile` 的 Rust builder 固定为 `rust:1.93-bookworm`。如果本机 Docker Hub 拉取失败,可以先在本机准备同名本地 builder 镜像,但不要把临时 bootstrap 容器或私有 registry 凭据写入仓库。
|
`api-server` 容器镜像只构建 Linux release API 二进制,不构建 `spacetime-module`。当前 `api-server -> spacetime-client -> spacetimedb-sdk 2.4.1` 依赖链要求 Rust 1.93,因此 `deploy/container/api-server.Dockerfile` 的 Rust builder 固定为 `rust:1.93-bookworm`。如果本机 Docker Hub 拉取失败,可以先在本机准备同名本地 builder 镜像,但不要把临时 bootstrap 容器或私有 registry 凭据写入仓库。
|
||||||
|
|
||||||
## 启动与验证
|
## 启动与验证
|
||||||
|
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ name: genarrative-container-loadtest
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
spacetimedb:
|
spacetimedb:
|
||||||
image: clockworklabs/spacetime:v2.3.0
|
image: clockworklabs/spacetime:v2.4.1
|
||||||
user: root
|
user: root
|
||||||
command:
|
command:
|
||||||
[
|
[
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ server-rs + Axum + SpacetimeDB
|
|||||||
|
|
||||||
`server-rs/Cargo.toml` 是 workspace 事实源。默认构建成员为 `crates/api-server`;第三方依赖版本和 workspace 内 crate path 统一放在 `[workspace.dependencies]`。
|
`server-rs/Cargo.toml` 是 workspace 事实源。默认构建成员为 `crates/api-server`;第三方依赖版本和 workspace 内 crate path 统一放在 `[workspace.dependencies]`。
|
||||||
|
|
||||||
SpacetimeDB 版本口径:当前 Rust crate `spacetimedb`、`spacetimedb-sdk`、`spacetimedb-lib` 统一锁定 `2.3.0`;本地 `spacetime` CLI / standalone、生成的 `spacetime-client` bindings 和容器压测镜像也必须与 `2.3.0` 对齐,避免 BSATN / procedure result 反序列化错配。
|
SpacetimeDB 版本口径:当前 Rust crate `spacetimedb`、`spacetimedb-sdk`、`spacetimedb-lib` 统一锁定 `2.4.1`;本地 `spacetime` CLI / standalone、生成的 `spacetime-client` bindings 和容器压测镜像也必须与 `2.4.1` 对齐,避免 BSATN / procedure result 反序列化错配。
|
||||||
|
|
||||||
当前主要 crate:
|
当前主要 crate:
|
||||||
|
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ spacetime sql <database> "SELECT * FROM puzzle_gallery_card_view LIMIT 1" --serv
|
|||||||
|
|
||||||
本地 `npm run dev:spacetime` 发布模块时必须显式忽略仓库根目录的 `spacetime.json`,由脚本固定追加 `--no-config` 并使用命令参数里传入的数据库名和 `--server http://127.0.0.1:3101`。否则 CLI 可能把发布目标改写到配置文件里的其他数据库,导致 `dev:spacetime` 启动后又因发布失败自动退出,浏览器随后会在 `ws://127.0.0.1:3101/v1/database/.../subscribe` 看到连接拒绝。
|
本地 `npm run dev:spacetime` 发布模块时必须显式忽略仓库根目录的 `spacetime.json`,由脚本固定追加 `--no-config` 并使用命令参数里传入的数据库名和 `--server http://127.0.0.1:3101`。否则 CLI 可能把发布目标改写到配置文件里的其他数据库,导致 `dev:spacetime` 启动后又因发布失败自动退出,浏览器随后会在 `ws://127.0.0.1:3101/v1/database/.../subscribe` 看到连接拒绝。
|
||||||
|
|
||||||
本地 `spacetime` CLI / standalone 版本必须和 `server-rs/Cargo.toml` 里锁定的 `spacetimedb` 版本一致;当前统一版本为 `2.3.0`。若版本错配,procedure 返回值可能在宿主侧触发 `Failed to BSATN deserialize procedure return value`,api-server 最终表现为敲木鱼等创作动作的 `SpacetimeDB procedure 调用超时`。排障时先运行 `spacetime --version`,再对照 `server-rs/Cargo.toml` 的 `spacetimedb = "..."`;需要切版本时执行 `spacetime version install <version> && spacetime version use <version>`,然后重新启动 `npm run dev:spacetime`。当前 `scripts/dev.mjs` 会在启动和复用本地 SpacetimeDB 前写入并校验 `dev-spacetime-tool-version`,避免把旧 standalone 继续带进新一轮创作。
|
本地 `spacetime` CLI / standalone 版本必须和 `server-rs/Cargo.toml` 里锁定的 `spacetimedb` 版本一致;当前统一版本为 `2.4.1`。若版本错配,procedure 返回值可能在宿主侧触发 `Failed to BSATN deserialize procedure return value`,api-server 最终表现为敲木鱼等创作动作的 `SpacetimeDB procedure 调用超时`。排障时先运行 `spacetime --version`,再对照 `server-rs/Cargo.toml` 的 `spacetimedb = "..."`;需要切版本时执行 `spacetime version install <version> && spacetime version use <version>`,然后重新启动 `npm run dev:spacetime`。当前 `scripts/dev.mjs` 会在启动和复用本地 SpacetimeDB 前写入并校验 `dev-spacetime-tool-version`,避免把旧 standalone 继续带进新一轮创作。
|
||||||
|
|
||||||
本地 `.env`、`.env.local` 或 `.env.secrets.local` 修改后必须重启 `api-server` 才会生效;若已经通过 `npm run dev` 启动完整联调,可在该终端输入 `rs api-server`。排查 RPG / 拼图 / 抓大鹅等 VectorEngine 生图链路时,确认 `VECTOR_ENGINE_BASE_URL`、`VECTOR_ENGINE_API_KEY` 和 `VECTOR_ENGINE_IMAGE_REQUEST_TIMEOUT_MS` 只在本地或服务器密钥文件中配置,不能写入 Git。VectorEngine `gpt-image-2` 图片协议、URL / base64 响应解析、远端图片下载和 provider 侧结构化日志在 `server-rs/crates/platform-image`;`api-server` 只做配置、玩法编排、OSS / asset 持久化、计费和失败审计落库。开局 CG 故事板、首图、背景和图集都属于长耗时图片请求;后端默认会把 `VECTOR_ENGINE_IMAGE_REQUEST_TIMEOUT_MS` 下限收口到 `1000000`,旧进程仍可能沿用重启前的短超时。若 VectorEngine 在 `send()` 阶段失败且日志显示 `SendRequest`,先看同一 `request_id` 的 provider 日志字段 `source`、`source_chain`、`source_chain_depth`,再查 `external_api_call_failure.metadata_json.errorSource`;当前 multipart `/v1/images/edits` 单独强制 HTTP/1.1。拼图关卡资产按 `level_scene -> ui_spritesheet -> level_background` 顺序生成,日志会带 `slot`、`asset_kind` 和 `elapsed_ms`。
|
本地 `.env`、`.env.local` 或 `.env.secrets.local` 修改后必须重启 `api-server` 才会生效;若已经通过 `npm run dev` 启动完整联调,可在该终端输入 `rs api-server`。排查 RPG / 拼图 / 抓大鹅等 VectorEngine 生图链路时,确认 `VECTOR_ENGINE_BASE_URL`、`VECTOR_ENGINE_API_KEY` 和 `VECTOR_ENGINE_IMAGE_REQUEST_TIMEOUT_MS` 只在本地或服务器密钥文件中配置,不能写入 Git。VectorEngine `gpt-image-2` 图片协议、URL / base64 响应解析、远端图片下载和 provider 侧结构化日志在 `server-rs/crates/platform-image`;`api-server` 只做配置、玩法编排、OSS / asset 持久化、计费和失败审计落库。开局 CG 故事板、首图、背景和图集都属于长耗时图片请求;后端默认会把 `VECTOR_ENGINE_IMAGE_REQUEST_TIMEOUT_MS` 下限收口到 `1000000`,旧进程仍可能沿用重启前的短超时。若 VectorEngine 在 `send()` 阶段失败且日志显示 `SendRequest`,先看同一 `request_id` 的 provider 日志字段 `source`、`source_chain`、`source_chain_depth`,再查 `external_api_call_failure.metadata_json.errorSource`;当前 multipart `/v1/images/edits` 单独强制 HTTP/1.1。拼图关卡资产按 `level_scene -> ui_spritesheet -> level_background` 顺序生成,日志会带 `slot`、`asset_kind` 和 `elapsed_ms`。
|
||||||
|
|
||||||
@@ -269,7 +269,7 @@ Jenkins 按 web / api / Spacetime module / build / deploy / publish 拆分
|
|||||||
- `GENARRATIVE_API_MAX_CONCURRENT_REQUESTS=512` 开启应用内 HTTP 并发背压;`GENARRATIVE_API_GALLERY_MAX_CONCURRENT_REQUESTS=320`、`GENARRATIVE_API_DETAIL_MAX_CONCURRENT_REQUESTS=64`、`GENARRATIVE_API_ADMIN_MAX_CONCURRENT_REQUESTS=16` 分别限制公开列表、公开详情和后台 API 热路径。超过许可时直接返回 `429 Too Many Requests` 和 `Retry-After: 1`,`/healthz` 与 `/readyz` 不受该限制。这些值不是 RPS 限速;如果压测中 429 上升但内存和 p95 收敛,说明背压正在保护进程。直连 `api-server` 的极高 RPS 压测若出现 `connection refused`,通常已经打到 TCP 监听 / accept 层,应同时检查 backlog、Nginx upstream keepalive 和前置限流。
|
- `GENARRATIVE_API_MAX_CONCURRENT_REQUESTS=512` 开启应用内 HTTP 并发背压;`GENARRATIVE_API_GALLERY_MAX_CONCURRENT_REQUESTS=320`、`GENARRATIVE_API_DETAIL_MAX_CONCURRENT_REQUESTS=64`、`GENARRATIVE_API_ADMIN_MAX_CONCURRENT_REQUESTS=16` 分别限制公开列表、公开详情和后台 API 热路径。超过许可时直接返回 `429 Too Many Requests` 和 `Retry-After: 1`,`/healthz` 与 `/readyz` 不受该限制。这些值不是 RPS 限速;如果压测中 429 上升但内存和 p95 收敛,说明背压正在保护进程。直连 `api-server` 的极高 RPS 压测若出现 `connection refused`,通常已经打到 TCP 监听 / accept 层,应同时检查 backlog、Nginx upstream keepalive 和前置限流。
|
||||||
- `api-server` 正常运行时 `/healthz` 返回进程存活状态,`/readyz` 返回是否仍接收新流量;收到 `SIGINT` / `SIGTERM` 后会先把 readiness 标记为不可用,再让 Axum 停止接新连接并等待已有 HTTP 请求排空。systemd 仍以 `KillSignal=SIGINT` 停服务,`TimeoutStopSec=90` 作为长请求排空上限。
|
- `api-server` 正常运行时 `/healthz` 返回进程存活状态,`/readyz` 返回是否仍接收新流量;收到 `SIGINT` / `SIGTERM` 后会先把 readiness 标记为不可用,再让 Axum 停止接新连接并等待已有 HTTP 请求排空。systemd 仍以 `KillSignal=SIGINT` 停服务,`TimeoutStopSec=90` 作为长请求排空上限。
|
||||||
- `genarrative-api.service` 设置 `LimitNOFILE=65535`、`TasksMax=2048`;上线后用 `systemctl show genarrative-api.service -p LimitNOFILE -p TasksMax -p TimeoutStopUSec` 和 `cat /proc/$(pidof api-server)/limits` 核对。
|
- `genarrative-api.service` 设置 `LimitNOFILE=65535`、`TasksMax=2048`;上线后用 `systemctl show genarrative-api.service -p LimitNOFILE -p TasksMax -p TimeoutStopUSec` 和 `cat /proc/$(pidof api-server)/limits` 核对。
|
||||||
- Server provision 不再通过 Windows helper 下载,也不再通过 Linux build 节点中转工具包。`Prepare Provision Tools` 在目标 dev / release agent 工作区内准备 `spacetime-x86_64-unknown-linux-gnu.tar.gz` 和 `otelcol-contrib_0.151.0_linux_amd64.tar.gz` 并生成 `provision-tools/`;如果目标服务器下载需要代理,在 `PROVISION_DOWNLOAD_PROXY` 配置目标机可访问的 HTTP 代理。
|
- Server provision 不再通过 Windows helper 下载,也不再通过 Linux build 节点中转工具包。`Prepare Provision Tools` 在目标 dev / release agent 工作区内准备 SpacetimeDB `2.4.1` 的 `spacetime-x86_64-unknown-linux-gnu.tar.gz` 和 `otelcol-contrib_0.151.0_linux_amd64.tar.gz` 并生成 `provision-tools/`;如果目标服务器下载需要代理,在 `PROVISION_DOWNLOAD_PROXY` 配置目标机可访问的 HTTP 代理。
|
||||||
- 除 `Genarrative-Server-Provision` 外,`Genarrative-Stdb-Module-Build`、`Genarrative-Web-Build`、`Genarrative-Api-Build`、`Genarrative-*Deploy`、`Genarrative-Database-Import/Export`、`Genarrative-Full-Build-And-Deploy` 和 `Genarrative-Notify-Email` 的生产流水线现都以 Linux agent 为主,仍按各自 Jenkinsfile 的 checkout 口径执行。Server provision 不使用公网备用 Git 源。
|
- 除 `Genarrative-Server-Provision` 外,`Genarrative-Stdb-Module-Build`、`Genarrative-Web-Build`、`Genarrative-Api-Build`、`Genarrative-*Deploy`、`Genarrative-Database-Import/Export`、`Genarrative-Full-Build-And-Deploy` 和 `Genarrative-Notify-Email` 的生产流水线现都以 Linux agent 为主,仍按各自 Jenkinsfile 的 checkout 口径执行。Server provision 不使用公网备用 Git 源。
|
||||||
- `otelcol-contrib.service` 作为可选系统服务加入 provision,默认监听 `127.0.0.1:4317/4318` 并使用 `deploy/otelcol/genarrative-debug.yaml`。api-server 是否发送 OTLP 仍由 `GENARRATIVE_OTEL_ENABLED` 控制,服务 unit 见 `deploy/systemd/otelcol-contrib.service`。
|
- `otelcol-contrib.service` 作为可选系统服务加入 provision,默认监听 `127.0.0.1:4317/4318` 并使用 `deploy/otelcol/genarrative-debug.yaml`。api-server 是否发送 OTLP 仍由 `GENARRATIVE_OTEL_ENABLED` 控制,服务 unit 见 `deploy/systemd/otelcol-contrib.service`。
|
||||||
- Nginx `/api/` 与 `/admin/api/` 通过 `genarrative_api` upstream 代理到 `127.0.0.1:8082`,upstream keepalive 为 64;`limit_conn` 负责连接 / 并发保护,`limit_req` 负责入口 RPS 快拒绝。当前模板把公开 gallery list 单独放到 `genarrative_gallery_rps`,默认 `rate=5000r/s`、`burst=4096`、`limit_conn=320`;公开详情和普通 API 放到 `genarrative_api_rps`,后台 API 放到 `genarrative_admin_rps`。通用 `/api` location 设置 `client_max_body_size 64m` 是反代兜底,防止拼图入口页 / 新增关卡本地参考图 Data URL 或旧兼容请求在到达 `api-server` 前被默认 1 MiB 上限拦截;拼图本地参考图前后端统一限制 6MB,历史图片仍提交 `referenceImageAssetObjectId(s)`。若线上出现 `413 Request Entity Too Large` 且 access log 中 `request_time=0.000`、`upstream_status=-`,说明请求在 Nginx 层被拦截,先用 `nginx -T | grep client_max_body_size` 检查 release 模板是否已渲染并 reload,同时检查前端是否超出 6MB 或错误提交了未压缩大图。`limit_conn_status 429` 和 `limit_req_status 429` 必须在 HTTP 与 HTTPS server 中同时生效;若线上压测看到 `limiting connections by zone "genarrative_api_conn"` 却返回 503,优先检查 `nginx -T` 里 HTTPS server 是否缺少这些状态码,以及 `/api/runtime/puzzle/gallery` 是否误落到通用 `location ~ ^/api` 的 `limit_conn=64`。压测时看 `/var/log/nginx/genarrative.access.log` 中的 `request_time`、`upstream_connect_time`、`upstream_header_time`、`upstream_response_time`、`upstream_status`、`request_id`。
|
- Nginx `/api/` 与 `/admin/api/` 通过 `genarrative_api` upstream 代理到 `127.0.0.1:8082`,upstream keepalive 为 64;`limit_conn` 负责连接 / 并发保护,`limit_req` 负责入口 RPS 快拒绝。当前模板把公开 gallery list 单独放到 `genarrative_gallery_rps`,默认 `rate=5000r/s`、`burst=4096`、`limit_conn=320`;公开详情和普通 API 放到 `genarrative_api_rps`,后台 API 放到 `genarrative_admin_rps`。通用 `/api` location 设置 `client_max_body_size 64m` 是反代兜底,防止拼图入口页 / 新增关卡本地参考图 Data URL 或旧兼容请求在到达 `api-server` 前被默认 1 MiB 上限拦截;拼图本地参考图前后端统一限制 6MB,历史图片仍提交 `referenceImageAssetObjectId(s)`。若线上出现 `413 Request Entity Too Large` 且 access log 中 `request_time=0.000`、`upstream_status=-`,说明请求在 Nginx 层被拦截,先用 `nginx -T | grep client_max_body_size` 检查 release 模板是否已渲染并 reload,同时检查前端是否超出 6MB 或错误提交了未压缩大图。`limit_conn_status 429` 和 `limit_req_status 429` 必须在 HTTP 与 HTTPS server 中同时生效;若线上压测看到 `limiting connections by zone "genarrative_api_conn"` 却返回 503,优先检查 `nginx -T` 里 HTTPS server 是否缺少这些状态码,以及 `/api/runtime/puzzle/gallery` 是否误落到通用 `location ~ ^/api` 的 `limit_conn=64`。压测时看 `/var/log/nginx/genarrative.access.log` 中的 `request_time`、`upstream_connect_time`、`upstream_header_time`、`upstream_response_time`、`upstream_status`、`request_id`。
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ pipeline {
|
|||||||
string(name: 'PROVISION_DOWNLOADS_DIR', defaultValue: 'provision-tool-downloads', description: '目标服务器工作区内暂存 SpacetimeDB/otelcol 安装包的相对目录')
|
string(name: 'PROVISION_DOWNLOADS_DIR', defaultValue: 'provision-tool-downloads', description: '目标服务器工作区内暂存 SpacetimeDB/otelcol 安装包的相对目录')
|
||||||
string(name: 'PROVISION_TOOLS_DIR', defaultValue: 'provision-tools', description: '目标机工作区内由已下载安装包生成的工具包目录')
|
string(name: 'PROVISION_TOOLS_DIR', defaultValue: 'provision-tools', description: '目标机工作区内由已下载安装包生成的工具包目录')
|
||||||
string(name: 'PROVISION_DOWNLOAD_PROXY', defaultValue: '', description: '可选,目标服务器下载 SpacetimeDB 和 otelcol-contrib 时使用的代理地址,例如 http://127.0.0.1:7890;留空不设置代理')
|
string(name: 'PROVISION_DOWNLOAD_PROXY', defaultValue: '', description: '可选,目标服务器下载 SpacetimeDB 和 otelcol-contrib 时使用的代理地址,例如 http://127.0.0.1:7890;留空不设置代理')
|
||||||
string(name: 'SPACETIME_DOWNLOAD_ROOT', defaultValue: 'https://github.com/clockworklabs/SpacetimeDB/releases/latest/download', description: '目标服务器使用的 SpacetimeDB Linux release tarball 根地址')
|
string(name: 'SPACETIME_DOWNLOAD_ROOT', defaultValue: 'https://github.com/clockworklabs/SpacetimeDB/releases/download/v2.4.1', description: '目标服务器使用的 SpacetimeDB Linux release tarball 根地址;默认固定到项目锁定版本')
|
||||||
string(name: 'SPACETIME_TARGET_HOST', defaultValue: 'x86_64-unknown-linux-gnu', description: 'SpacetimeDB 预编译包 host triple,development/release Linux amd64 使用默认值')
|
string(name: 'SPACETIME_TARGET_HOST', defaultValue: 'x86_64-unknown-linux-gnu', description: 'SpacetimeDB 预编译包 host triple,development/release Linux amd64 使用默认值')
|
||||||
string(name: 'SPACETIME_ROOT', defaultValue: '/stdb', description: 'SpacetimeDB root-dir')
|
string(name: 'SPACETIME_ROOT', defaultValue: '/stdb', description: 'SpacetimeDB root-dir')
|
||||||
string(name: 'RELEASE_ROOT', defaultValue: '/opt/genarrative/releases', description: 'release 根目录')
|
string(name: 'RELEASE_ROOT', defaultValue: '/opt/genarrative/releases', description: 'release 根目录')
|
||||||
@@ -162,7 +162,7 @@ BASH
|
|||||||
OTELCOL_VERSION="${OTELCOL_VERSION:-0.151.0}" \
|
OTELCOL_VERSION="${OTELCOL_VERSION:-0.151.0}" \
|
||||||
PREPARE_OTELCOL="${ENABLE_OTELCOL:-true}" \
|
PREPARE_OTELCOL="${ENABLE_OTELCOL:-true}" \
|
||||||
PROVISION_DOWNLOAD_PROXY="${PROVISION_DOWNLOAD_PROXY:-}" \
|
PROVISION_DOWNLOAD_PROXY="${PROVISION_DOWNLOAD_PROXY:-}" \
|
||||||
SPACETIME_DOWNLOAD_ROOT="${SPACETIME_DOWNLOAD_ROOT:-https://github.com/clockworklabs/SpacetimeDB/releases/latest/download}" \
|
SPACETIME_DOWNLOAD_ROOT="${SPACETIME_DOWNLOAD_ROOT:-https://github.com/clockworklabs/SpacetimeDB/releases/download/v2.4.1}" \
|
||||||
SPACETIME_TARGET_HOST="${SPACETIME_TARGET_HOST:-x86_64-unknown-linux-gnu}" \
|
SPACETIME_TARGET_HOST="${SPACETIME_TARGET_HOST:-x86_64-unknown-linux-gnu}" \
|
||||||
scripts/prepare-server-provision-tools.sh
|
scripts/prepare-server-provision-tools.sh
|
||||||
'
|
'
|
||||||
|
|||||||
@@ -408,7 +408,11 @@ function readWorkspaceSpacetimeVersion() {
|
|||||||
if (!version) {
|
if (!version) {
|
||||||
throw new Error('无法从 server-rs/Cargo.toml 读取 spacetimedb 版本');
|
throw new Error('无法从 server-rs/Cargo.toml 读取 spacetimedb 版本');
|
||||||
}
|
}
|
||||||
return version;
|
return normalizeCargoVersionRequirement(version);
|
||||||
|
}
|
||||||
|
|
||||||
|
function normalizeCargoVersionRequirement(version) {
|
||||||
|
return version.replace(/^=/u, '');
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseSpacetimeToolVersion(output) {
|
function parseSpacetimeToolVersion(output) {
|
||||||
@@ -2130,6 +2134,7 @@ export {
|
|||||||
createWatchConfigs,
|
createWatchConfigs,
|
||||||
isSpacetimePublishPermissionError,
|
isSpacetimePublishPermissionError,
|
||||||
isDirectModuleExecution,
|
isDirectModuleExecution,
|
||||||
|
normalizeCargoVersionRequirement,
|
||||||
parseSpacetimeToolVersion,
|
parseSpacetimeToolVersion,
|
||||||
parseArgs,
|
parseArgs,
|
||||||
resolveDevStackStatePath,
|
resolveDevStackStatePath,
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ import {
|
|||||||
createWatchConfigs,
|
createWatchConfigs,
|
||||||
isDirectModuleExecution,
|
isDirectModuleExecution,
|
||||||
isSpacetimePublishPermissionError,
|
isSpacetimePublishPermissionError,
|
||||||
|
normalizeCargoVersionRequirement,
|
||||||
parseSpacetimeToolVersion,
|
parseSpacetimeToolVersion,
|
||||||
parseArgs,
|
parseArgs,
|
||||||
resolveDevStackStatePath,
|
resolveDevStackStatePath,
|
||||||
@@ -34,7 +35,7 @@ function workspaceSpacetimeVersionForTest() {
|
|||||||
if (!match) {
|
if (!match) {
|
||||||
throw new Error('无法读取测试用 SpacetimeDB 版本');
|
throw new Error('无法读取测试用 SpacetimeDB 版本');
|
||||||
}
|
}
|
||||||
return match[1];
|
return normalizeCargoVersionRequirement(match[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
describe('dev scheduler argument routing', () => {
|
describe('dev scheduler argument routing', () => {
|
||||||
@@ -402,20 +403,25 @@ describe('dev scheduler watch routing', () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
describe('dev scheduler spacetime refresh', () => {
|
describe('dev scheduler spacetime refresh', () => {
|
||||||
|
test('解析 Cargo 精确版本要求时用于 CLI 校验的版本号不带等号', () => {
|
||||||
|
expect(normalizeCargoVersionRequirement('=2.4.1')).toBe('2.4.1');
|
||||||
|
expect(normalizeCargoVersionRequirement('2.4.1')).toBe('2.4.1');
|
||||||
|
});
|
||||||
|
|
||||||
test('解析 spacetime --version 输出里的 tool version', () => {
|
test('解析 spacetime --version 输出里的 tool version', () => {
|
||||||
const version = parseSpacetimeToolVersion(`
|
const version = parseSpacetimeToolVersion(`
|
||||||
A new version of SpacetimeDB is available: v2.3.0 (current: v2.2.0)
|
A new version of SpacetimeDB is available: v2.4.1 (current: v2.4.0)
|
||||||
spacetimedb tool version 2.3.0; spacetimedb-lib version 2.3.0;
|
spacetimedb tool version 2.4.1; spacetimedb-lib version 2.4.1;
|
||||||
`);
|
`);
|
||||||
|
|
||||||
expect(version).toBe('2.3.0');
|
expect(version).toBe('2.4.1');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('本机 spacetime 版本和 workspace 锁定版本不一致时直接报清楚', () => {
|
test('本机 spacetime 版本和 workspace 锁定版本不一致时直接报清楚', () => {
|
||||||
expect(() =>
|
expect(() =>
|
||||||
assertSpacetimeToolVersionMatchesWorkspace({
|
assertSpacetimeToolVersionMatchesWorkspace({
|
||||||
toolVersion: '2.1.0',
|
toolVersion: '2.1.0',
|
||||||
workspaceVersion: '2.3.0',
|
workspaceVersion: '2.4.1',
|
||||||
}),
|
}),
|
||||||
).toThrow('procedure 返回值 BSATN 反序列化失败');
|
).toThrow('procedure 返回值 BSATN 反序列化失败');
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ PREPARE_OTELCOL="${PREPARE_OTELCOL:-${ENABLE_OTELCOL:-true}}"
|
|||||||
OTELCOL_DOWNLOAD_ROOT="${OTELCOL_DOWNLOAD_ROOT:-https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download}"
|
OTELCOL_DOWNLOAD_ROOT="${OTELCOL_DOWNLOAD_ROOT:-https://github.com/open-telemetry/opentelemetry-collector-releases/releases/download}"
|
||||||
OTELCOL_ARCHIVE_PATH="${OTELCOL_ARCHIVE_PATH:-}"
|
OTELCOL_ARCHIVE_PATH="${OTELCOL_ARCHIVE_PATH:-}"
|
||||||
SPACETIME_INSTALLER_URL="${SPACETIME_INSTALLER_URL:-https://install.spacetimedb.com}"
|
SPACETIME_INSTALLER_URL="${SPACETIME_INSTALLER_URL:-https://install.spacetimedb.com}"
|
||||||
SPACETIME_DOWNLOAD_ROOT="${SPACETIME_DOWNLOAD_ROOT:-https://github.com/clockworklabs/SpacetimeDB/releases/latest/download}"
|
SPACETIME_DOWNLOAD_ROOT="${SPACETIME_DOWNLOAD_ROOT:-https://github.com/clockworklabs/SpacetimeDB/releases/download/v2.4.1}"
|
||||||
SPACETIME_TARGET_HOST="${SPACETIME_TARGET_HOST:-x86_64-unknown-linux-gnu}"
|
SPACETIME_TARGET_HOST="${SPACETIME_TARGET_HOST:-x86_64-unknown-linux-gnu}"
|
||||||
SPACETIME_ARCHIVE_PATH="${SPACETIME_ARCHIVE_PATH:-}"
|
SPACETIME_ARCHIVE_PATH="${SPACETIME_ARCHIVE_PATH:-}"
|
||||||
SPACETIME_INSTALLER_PATH="${SPACETIME_INSTALLER_PATH:-}"
|
SPACETIME_INSTALLER_PATH="${SPACETIME_INSTALLER_PATH:-}"
|
||||||
|
|||||||
77
server-rs/Cargo.lock
generated
77
server-rs/Cargo.lock
generated
@@ -664,7 +664,7 @@ dependencies = [
|
|||||||
"openssl-sys",
|
"openssl-sys",
|
||||||
"pkg-config",
|
"pkg-config",
|
||||||
"vcpkg",
|
"vcpkg",
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -851,7 +851,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
|
|||||||
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"libc",
|
"libc",
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -1341,7 +1341,7 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
"percent-encoding",
|
"percent-encoding",
|
||||||
"pin-project-lite",
|
"pin-project-lite",
|
||||||
"socket2 0.6.3",
|
"socket2 0.5.10",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tower-service",
|
"tower-service",
|
||||||
"tracing",
|
"tracing",
|
||||||
@@ -2112,7 +2112,7 @@ version = "0.50.3"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2659,7 +2659,7 @@ dependencies = [
|
|||||||
"quinn-udp",
|
"quinn-udp",
|
||||||
"rustc-hash",
|
"rustc-hash",
|
||||||
"rustls",
|
"rustls",
|
||||||
"socket2 0.6.3",
|
"socket2 0.5.10",
|
||||||
"thiserror 2.0.18",
|
"thiserror 2.0.18",
|
||||||
"tokio",
|
"tokio",
|
||||||
"tracing",
|
"tracing",
|
||||||
@@ -2696,9 +2696,9 @@ dependencies = [
|
|||||||
"cfg_aliases",
|
"cfg_aliases",
|
||||||
"libc",
|
"libc",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"socket2 0.6.3",
|
"socket2 0.5.10",
|
||||||
"tracing",
|
"tracing",
|
||||||
"windows-sys 0.52.0",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -2990,7 +2990,7 @@ dependencies = [
|
|||||||
"errno",
|
"errno",
|
||||||
"libc",
|
"libc",
|
||||||
"linux-raw-sys",
|
"linux-raw-sys",
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -3480,9 +3480,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb"
|
name = "spacetimedb"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "62aa9a940d32178e4afa7a14c9bbda76685d71d5487798905e0139b807182092"
|
checksum = "536e289684a624421eae421310d2f997a12f1be70e86b3692c87b837cbbb5a33"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
@@ -3503,9 +3503,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-bindings-macro"
|
name = "spacetimedb-bindings-macro"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "5feb5d55f04f3209764d9b94949226708a4a8578e92ac5c32abfd31dbdfc928c"
|
checksum = "53256d52b684b899b92b0fbd93f3a654458feb76290893ef13d57900fd38cfd5"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"heck 0.4.1",
|
"heck 0.4.1",
|
||||||
"humantime",
|
"humantime",
|
||||||
@@ -3517,18 +3517,18 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-bindings-sys"
|
name = "spacetimedb-bindings-sys"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "28f9c900c9371fd7e84d34b8cb2bf90562060dc2473ae9c44e970d4026e7d7d9"
|
checksum = "dba2d0109f7f2aa4cf6f349b8145268b214d0348b8e409005452d65b61139080"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"spacetimedb-primitives",
|
"spacetimedb-primitives",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-client-api-messages"
|
name = "spacetimedb-client-api-messages"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "349296ad43e6ecdced74ad8b3fd2c6abbdbb40cdbd06ac329c0726c6b911fa73"
|
checksum = "014a905d52635c0dcb4fde3092fcc001e770d0d34c2e406b837d81196a630423"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bytes",
|
"bytes",
|
||||||
"bytestring",
|
"bytestring",
|
||||||
@@ -3548,9 +3548,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-data-structures"
|
name = "spacetimedb-data-structures"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "8b86ed7c567d723378a405317e30413293cc0bc9e2aac2f7843580d744b43c31"
|
checksum = "823d3b3ecac3e8e948f254ee69e3fb848c8c0b4e6f92568bcfdeead1c98c4ff4"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ahash",
|
"ahash",
|
||||||
"crossbeam-queue",
|
"crossbeam-queue",
|
||||||
@@ -3563,13 +3563,14 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-lib"
|
name = "spacetimedb-lib"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "a15a98adf6f030e8188df4b038e140a54771e6eeb50ad05a6c3e46939b8de853"
|
checksum = "7aecb06dc09f1e964a30f9de87404f21470a10f4f988ef668494b8ea53a4f920"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"bitflags 2.11.1",
|
"bitflags 2.11.1",
|
||||||
"blake3",
|
"blake3",
|
||||||
|
"bytes",
|
||||||
"chrono",
|
"chrono",
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"enum-as-inner",
|
"enum-as-inner",
|
||||||
@@ -3587,9 +3588,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-memory-usage"
|
name = "spacetimedb-memory-usage"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c68aa8ed30c15a1d665bf3a8c689955508ce75ca784068ec0232b4cdd511b4c8"
|
checksum = "9ce5f8d17fe9432e0d6b6e04f46001ce0459ef70236e193bd5b17b3f71dd7731"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"decorum",
|
"decorum",
|
||||||
"ethnum",
|
"ethnum",
|
||||||
@@ -3597,9 +3598,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-metrics"
|
name = "spacetimedb-metrics"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "f8455b0a92dd632757f7e7c22d5e438aa33da5f48d14483e5ee79dfc5468a4db"
|
checksum = "4d178e28a736a326574c39753107b64a13cac7c04a57948f80caab8cadc1b7d8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
"itertools",
|
"itertools",
|
||||||
@@ -3609,9 +3610,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-primitives"
|
name = "spacetimedb-primitives"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b20cc4bf97377f1dce9e75b2f6ce94bc5c7c2a243040a7a2016ac5cdb002793d"
|
checksum = "2be40c852541973b8faf8c74957ade687579cfc5badd09b1060fb83e9a4fbec8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bitflags 2.11.1",
|
"bitflags 2.11.1",
|
||||||
"either",
|
"either",
|
||||||
@@ -3623,18 +3624,18 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-query-builder"
|
name = "spacetimedb-query-builder"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "afa17878dbc23b4bfc06a45165c7afd34c8d29bba6dfde81625840c11380abce"
|
checksum = "857603c65a283e190b7e0a8bb62c8ff3fbd88cf97b0ae34454862e0caf2a30b7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"spacetimedb-lib",
|
"spacetimedb-lib",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-sats"
|
name = "spacetimedb-sats"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "74216db354eab5cefad9572a350654761495968478e83e51ef2c530cdf6cb1d4"
|
checksum = "0290133e753457920bc975872edbb78559cf2003c78d3f2a8e3f2ecc288229d3"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"arrayvec",
|
"arrayvec",
|
||||||
@@ -3665,9 +3666,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-schema"
|
name = "spacetimedb-schema"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "ff3ff36f901f6875907ff1df2b610fc396937b88f6793dfa04b0d9f298d74946"
|
checksum = "c54cac9350fe39d35002089af31417d28c85d44eca66646a1515f99117db03e0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"convert_case 0.6.0",
|
"convert_case 0.6.0",
|
||||||
@@ -3696,9 +3697,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-sdk"
|
name = "spacetimedb-sdk"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "26897e31aa58acd6cd0bcf12cf56a4ecd0cb4fc48053478626729e868f042e54"
|
checksum = "82ac34a6f244a0b7114ae52c94db0b85ef3e4bddcfa54adcfc8198e0143b638a"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anymap3",
|
"anymap3",
|
||||||
"base64 0.21.7",
|
"base64 0.21.7",
|
||||||
@@ -3728,9 +3729,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "spacetimedb-sql-parser"
|
name = "spacetimedb-sql-parser"
|
||||||
version = "2.3.0"
|
version = "2.4.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "19428d4ddc8cf1eb34e58715ed512820ee9a3de187a89f88f80e18e914a086ae"
|
checksum = "2fc9150d2dba445942d1c82b3d6e56f003ca024069eb43d1ccd06c1129ee1294"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"spacetimedb-lib",
|
"spacetimedb-lib",
|
||||||
@@ -3855,7 +3856,7 @@ dependencies = [
|
|||||||
"getrandom 0.4.2",
|
"getrandom 0.4.2",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"rustix",
|
"rustix",
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.59.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
@@ -4626,7 +4627,7 @@ version = "0.1.11"
|
|||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"windows-sys 0.61.2",
|
"windows-sys 0.48.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
|
|||||||
@@ -118,9 +118,9 @@ serde_urlencoded = "0.7"
|
|||||||
sha1 = "0.10"
|
sha1 = "0.10"
|
||||||
sha2 = "0.10"
|
sha2 = "0.10"
|
||||||
socket2 = "0.6"
|
socket2 = "0.6"
|
||||||
spacetimedb = "2.3.0"
|
spacetimedb = "=2.4.1"
|
||||||
spacetimedb-sdk = "2.3.0"
|
spacetimedb-sdk = "=2.4.1"
|
||||||
spacetimedb-lib = { version = "2.3.0", default-features = false }
|
spacetimedb-lib = { version = "=2.4.1", default-features = false }
|
||||||
time = "0.3"
|
time = "0.3"
|
||||||
tokio = "1"
|
tokio = "1"
|
||||||
tokio-stream = "0.1"
|
tokio-stream = "0.1"
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE
|
// THIS FILE IS AUTOMATICALLY GENERATED BY SPACETIMEDB. EDITS TO THIS FILE
|
||||||
// WILL NOT BE SAVED. MODIFY TABLES IN YOUR MODULE SOURCE CODE INSTEAD.
|
// WILL NOT BE SAVED. MODIFY TABLES IN YOUR MODULE SOURCE CODE INSTEAD.
|
||||||
|
|
||||||
// This was generated using spacetimedb cli version 2.3.0 (commit aa73d1c35b4b346b98eeba10a3d756b4ae72162f).
|
// This was generated using spacetimedb cli version 2.4.1 (commit 07b52763c9da8d7cf79780db222fec1ffcb84070).
|
||||||
|
|
||||||
#![allow(unused, clippy::all)]
|
#![allow(unused, clippy::all)]
|
||||||
use spacetimedb_sdk::__codegen::{self as __sdk, __lib, __sats, __ws};
|
use spacetimedb_sdk::__codegen::{self as __sdk, __lib, __sats, __ws};
|
||||||
@@ -5278,19 +5278,19 @@ impl __sdk::SubscriptionHandle for SubscriptionHandle {
|
|||||||
/// either a [`DbConnection`] or an [`EventContext`] and operate on either.
|
/// either a [`DbConnection`] or an [`EventContext`] and operate on either.
|
||||||
pub trait RemoteDbContext:
|
pub trait RemoteDbContext:
|
||||||
__sdk::DbContext<
|
__sdk::DbContext<
|
||||||
DbView = RemoteTables,
|
DbView = RemoteTables,
|
||||||
Reducers = RemoteReducers,
|
Reducers = RemoteReducers,
|
||||||
SubscriptionBuilder = __sdk::SubscriptionBuilder<RemoteModule>,
|
SubscriptionBuilder = __sdk::SubscriptionBuilder<RemoteModule>,
|
||||||
>
|
>
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
impl<
|
impl<
|
||||||
Ctx: __sdk::DbContext<
|
Ctx: __sdk::DbContext<
|
||||||
DbView = RemoteTables,
|
DbView = RemoteTables,
|
||||||
Reducers = RemoteReducers,
|
Reducers = RemoteReducers,
|
||||||
SubscriptionBuilder = __sdk::SubscriptionBuilder<RemoteModule>,
|
SubscriptionBuilder = __sdk::SubscriptionBuilder<RemoteModule>,
|
||||||
>,
|
>,
|
||||||
> RemoteDbContext for Ctx
|
> RemoteDbContext for Ctx
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait accept_quest {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestRecordInput,
|
input: QuestRecordInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl accept_quest for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestRecordInput,
|
input: QuestRecordInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(AcceptQuestArgs { input }, callback)
|
.invoke_reducer_with_callback(AcceptQuestArgs { input }, callback)
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait acknowledge_quest_completion {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestCompletionAckInput,
|
input: QuestCompletionAckInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl acknowledge_quest_completion for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestCompletionAckInput,
|
input: QuestCompletionAckInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(AcknowledgeQuestCompletionArgs { input }, callback)
|
.invoke_reducer_with_callback(AcknowledgeQuestCompletionArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_disable_profile_redeem_code {
|
|||||||
input: RuntimeProfileRedeemCodeAdminDisableInput,
|
input: RuntimeProfileRedeemCodeAdminDisableInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_disable_profile_redeem_code for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRedeemCodeAdminDisableInput,
|
input: RuntimeProfileRedeemCodeAdminDisableInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_disable_profile_task_config {
|
|||||||
input: RuntimeProfileTaskConfigAdminDisableInput,
|
input: RuntimeProfileTaskConfigAdminDisableInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_disable_profile_task_config for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileTaskConfigAdminDisableInput,
|
input: RuntimeProfileTaskConfigAdminDisableInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_list_profile_invite_codes {
|
|||||||
input: RuntimeProfileInviteCodeAdminListInput,
|
input: RuntimeProfileInviteCodeAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileInviteCodeAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileInviteCodeAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_list_profile_invite_codes for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileInviteCodeAdminListInput,
|
input: RuntimeProfileInviteCodeAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileInviteCodeAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileInviteCodeAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileInviteCodeAdminListProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileInviteCodeAdminListProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait admin_list_profile_recharge_products {
|
|||||||
input: RuntimeProfileRechargeProductAdminListInput,
|
input: RuntimeProfileRechargeProductAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeProductAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeProductAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl admin_list_profile_recharge_products for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRechargeProductAdminListInput,
|
input: RuntimeProfileRechargeProductAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeProductAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeProductAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp.invoke_procedure_with_callback::<_, RuntimeProfileRechargeProductAdminListProcedureResult>(
|
self.imp.invoke_procedure_with_callback::<_, RuntimeProfileRechargeProductAdminListProcedureResult>(
|
||||||
"admin_list_profile_recharge_products",
|
"admin_list_profile_recharge_products",
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_list_profile_redeem_codes {
|
|||||||
input: RuntimeProfileRedeemCodeAdminListInput,
|
input: RuntimeProfileRedeemCodeAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_list_profile_redeem_codes for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRedeemCodeAdminListInput,
|
input: RuntimeProfileRedeemCodeAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminListProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminListProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_list_profile_task_configs {
|
|||||||
input: RuntimeProfileTaskConfigAdminListInput,
|
input: RuntimeProfileTaskConfigAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_list_profile_task_configs for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileTaskConfigAdminListInput,
|
input: RuntimeProfileTaskConfigAdminListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminListProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminListProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminListProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_list_work_visibility {
|
|||||||
input: AdminWorkVisibilityListInput,
|
input: AdminWorkVisibilityListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AdminWorkVisibilityListProcedureResult, __sdk::InternalError>,
|
Result<AdminWorkVisibilityListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_list_work_visibility for super::RemoteProcedures {
|
|||||||
input: AdminWorkVisibilityListInput,
|
input: AdminWorkVisibilityListInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AdminWorkVisibilityListProcedureResult, __sdk::InternalError>,
|
Result<AdminWorkVisibilityListProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AdminWorkVisibilityListProcedureResult>(
|
.invoke_procedure_with_callback::<_, AdminWorkVisibilityListProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_update_work_visibility {
|
|||||||
input: AdminWorkVisibilityUpdateInput,
|
input: AdminWorkVisibilityUpdateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AdminWorkVisibilityProcedureResult, __sdk::InternalError>,
|
Result<AdminWorkVisibilityProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_update_work_visibility for super::RemoteProcedures {
|
|||||||
input: AdminWorkVisibilityUpdateInput,
|
input: AdminWorkVisibilityUpdateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AdminWorkVisibilityProcedureResult, __sdk::InternalError>,
|
Result<AdminWorkVisibilityProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AdminWorkVisibilityProcedureResult>(
|
.invoke_procedure_with_callback::<_, AdminWorkVisibilityProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_upsert_profile_invite_code {
|
|||||||
input: RuntimeProfileInviteCodeAdminUpsertInput,
|
input: RuntimeProfileInviteCodeAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileInviteCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileInviteCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_upsert_profile_invite_code for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileInviteCodeAdminUpsertInput,
|
input: RuntimeProfileInviteCodeAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileInviteCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileInviteCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileInviteCodeAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileInviteCodeAdminProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait admin_upsert_profile_recharge_product {
|
|||||||
input: RuntimeProfileRechargeProductAdminUpsertInput,
|
input: RuntimeProfileRechargeProductAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeProductAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeProductAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl admin_upsert_profile_recharge_product for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRechargeProductAdminUpsertInput,
|
input: RuntimeProfileRechargeProductAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeProductAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeProductAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileRechargeProductAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileRechargeProductAdminProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_upsert_profile_redeem_code {
|
|||||||
input: RuntimeProfileRedeemCodeAdminUpsertInput,
|
input: RuntimeProfileRedeemCodeAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_upsert_profile_redeem_code for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRedeemCodeAdminUpsertInput,
|
input: RuntimeProfileRedeemCodeAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRedeemCodeAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileRedeemCodeAdminProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait admin_upsert_profile_task_config {
|
|||||||
input: RuntimeProfileTaskConfigAdminUpsertInput,
|
input: RuntimeProfileTaskConfigAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl admin_upsert_profile_task_config for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileTaskConfigAdminUpsertInput,
|
input: RuntimeProfileTaskConfigAdminUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskConfigAdminProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileTaskConfigAdminProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait advance_puzzle_clear_next_level {
|
|||||||
input: PuzzleClearRunNextLevelInput,
|
input: PuzzleClearRunNextLevelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl advance_puzzle_clear_next_level for super::RemoteProcedures {
|
|||||||
input: PuzzleClearRunNextLevelInput,
|
input: PuzzleClearRunNextLevelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleClearRunProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleClearRunProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait advance_puzzle_next_level {
|
|||||||
input: PuzzleRunNextLevelInput,
|
input: PuzzleRunNextLevelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl advance_puzzle_next_level for super::RemoteProcedures {
|
|||||||
input: PuzzleRunNextLevelInput,
|
input: PuzzleRunNextLevelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleRunProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleRunProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait append_ai_text_chunk_and_return {
|
|||||||
input: AiTextChunkAppendInput,
|
input: AiTextChunkAppendInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl append_ai_text_chunk_and_return for super::RemoteProcedures {
|
|||||||
input: AiTextChunkAppendInput,
|
input: AiTextChunkAppendInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait append_visual_novel_runtime_history_entry {
|
|||||||
input: VisualNovelRuntimeHistoryAppendInput,
|
input: VisualNovelRuntimeHistoryAppendInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelHistoryProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelHistoryProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl append_visual_novel_runtime_history_entry for super::RemoteProcedures {
|
|||||||
input: VisualNovelRuntimeHistoryAppendInput,
|
input: VisualNovelRuntimeHistoryAppendInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelHistoryProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelHistoryProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, VisualNovelHistoryProcedureResult>(
|
.invoke_procedure_with_callback::<_, VisualNovelHistoryProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait apply_chapter_progression_ledger_entry_and_return {
|
|||||||
input: ChapterProgressionLedgerInput,
|
input: ChapterProgressionLedgerInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<ChapterProgressionProcedureResult, __sdk::InternalError>,
|
Result<ChapterProgressionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl apply_chapter_progression_ledger_entry_and_return for super::RemoteProcedur
|
|||||||
input: ChapterProgressionLedgerInput,
|
input: ChapterProgressionLedgerInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<ChapterProgressionProcedureResult, __sdk::InternalError>,
|
Result<ChapterProgressionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, ChapterProgressionProcedureResult>(
|
.invoke_procedure_with_callback::<_, ChapterProgressionProcedureResult>(
|
||||||
|
|||||||
@@ -50,11 +50,9 @@ pub trait apply_chapter_progression_ledger_entry {
|
|||||||
&self,
|
&self,
|
||||||
input: ChapterProgressionLedgerInput,
|
input: ChapterProgressionLedgerInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,11 +61,9 @@ impl apply_chapter_progression_ledger_entry for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: ChapterProgressionLedgerInput,
|
input: ChapterProgressionLedgerInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp.invoke_reducer_with_callback(
|
self.imp.invoke_reducer_with_callback(
|
||||||
ApplyChapterProgressionLedgerEntryArgs { input },
|
ApplyChapterProgressionLedgerEntryArgs { input },
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait apply_inventory_mutation {
|
|||||||
&self,
|
&self,
|
||||||
input: InventoryMutationInput,
|
input: InventoryMutationInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl apply_inventory_mutation for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: InventoryMutationInput,
|
input: InventoryMutationInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(ApplyInventoryMutationArgs { input }, callback)
|
.invoke_reducer_with_callback(ApplyInventoryMutationArgs { input }, callback)
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait apply_quest_signal {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestSignalApplyInput,
|
input: QuestSignalApplyInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl apply_quest_signal for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: QuestSignalApplyInput,
|
input: QuestSignalApplyInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(ApplyQuestSignalArgs { input }, callback)
|
.invoke_reducer_with_callback(ApplyQuestSignalArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait attach_ai_result_reference_and_return {
|
|||||||
input: AiResultReferenceInput,
|
input: AiResultReferenceInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl attach_ai_result_reference_and_return for super::RemoteProcedures {
|
|||||||
input: AiResultReferenceInput,
|
input: AiResultReferenceInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait authorize_database_migration_operator {
|
|||||||
input: DatabaseMigrationAuthorizeOperatorInput,
|
input: DatabaseMigrationAuthorizeOperatorInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationOperatorProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationOperatorProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl authorize_database_migration_operator for super::RemoteProcedures {
|
|||||||
input: DatabaseMigrationAuthorizeOperatorInput,
|
input: DatabaseMigrationAuthorizeOperatorInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationOperatorProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationOperatorProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, DatabaseMigrationOperatorProcedureResult>(
|
.invoke_procedure_with_callback::<_, DatabaseMigrationOperatorProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait begin_story_session_and_return {
|
|||||||
input: StorySessionInput,
|
input: StorySessionInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl begin_story_session_and_return for super::RemoteProcedures {
|
|||||||
input: StorySessionInput,
|
input: StorySessionInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, StorySessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, StorySessionProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait begin_story_session {
|
|||||||
&self,
|
&self,
|
||||||
input: StorySessionInput,
|
input: StorySessionInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl begin_story_session for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: StorySessionInput,
|
input: StorySessionInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(BeginStorySessionArgs { input }, callback)
|
.invoke_reducer_with_callback(BeginStorySessionArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait bind_asset_object_to_entity_and_return {
|
|||||||
input: AssetEntityBindingInput,
|
input: AssetEntityBindingInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AssetEntityBindingProcedureResult, __sdk::InternalError>,
|
Result<AssetEntityBindingProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl bind_asset_object_to_entity_and_return for super::RemoteProcedures {
|
|||||||
input: AssetEntityBindingInput,
|
input: AssetEntityBindingInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AssetEntityBindingProcedureResult, __sdk::InternalError>,
|
Result<AssetEntityBindingProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AssetEntityBindingProcedureResult>(
|
.invoke_procedure_with_callback::<_, AssetEntityBindingProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait bind_asset_object_to_entity {
|
|||||||
&self,
|
&self,
|
||||||
input: AssetEntityBindingInput,
|
input: AssetEntityBindingInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl bind_asset_object_to_entity for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: AssetEntityBindingInput,
|
input: AssetEntityBindingInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(BindAssetObjectToEntityArgs { input }, callback)
|
.invoke_reducer_with_callback(BindAssetObjectToEntityArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait cancel_ai_task_and_return {
|
|||||||
input: AiTaskCancelInput,
|
input: AiTaskCancelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl cancel_ai_task_and_return for super::RemoteProcedures {
|
|||||||
input: AiTaskCancelInput,
|
input: AiTaskCancelInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait checkpoint_wooden_fish_run {
|
|||||||
input: WoodenFishRunCheckpointInput,
|
input: WoodenFishRunCheckpointInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishRunProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl checkpoint_wooden_fish_run for super::RemoteProcedures {
|
|||||||
input: WoodenFishRunCheckpointInput,
|
input: WoodenFishRunCheckpointInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishRunProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, WoodenFishRunProcedureResult>(
|
.invoke_procedure_with_callback::<_, WoodenFishRunProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait claim_profile_task_reward_and_return {
|
|||||||
input: RuntimeProfileTaskClaimInput,
|
input: RuntimeProfileTaskClaimInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskClaimProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskClaimProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl claim_profile_task_reward_and_return for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileTaskClaimInput,
|
input: RuntimeProfileTaskClaimInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileTaskClaimProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileTaskClaimProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileTaskClaimProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileTaskClaimProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait claim_puzzle_work_point_incentive {
|
|||||||
input: PuzzleWorkPointIncentiveClaimInput,
|
input: PuzzleWorkPointIncentiveClaimInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleWorkProcedureResult, __sdk::InternalError>,
|
Result<PuzzleWorkProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl claim_puzzle_work_point_incentive for super::RemoteProcedures {
|
|||||||
input: PuzzleWorkPointIncentiveClaimInput,
|
input: PuzzleWorkPointIncentiveClaimInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleWorkProcedureResult, __sdk::InternalError>,
|
Result<PuzzleWorkProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleWorkProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleWorkProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait clear_database_migration_import_chunks {
|
|||||||
input: DatabaseMigrationImportChunksClearInput,
|
input: DatabaseMigrationImportChunksClearInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl clear_database_migration_import_chunks for super::RemoteProcedures {
|
|||||||
input: DatabaseMigrationImportChunksClearInput,
|
input: DatabaseMigrationImportChunksClearInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, DatabaseMigrationProcedureResult>(
|
.invoke_procedure_with_callback::<_, DatabaseMigrationProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait clear_platform_browse_history_and_return {
|
|||||||
input: RuntimeBrowseHistoryClearInput,
|
input: RuntimeBrowseHistoryClearInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeBrowseHistoryProcedureResult, __sdk::InternalError>,
|
Result<RuntimeBrowseHistoryProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl clear_platform_browse_history_and_return for super::RemoteProcedures {
|
|||||||
input: RuntimeBrowseHistoryClearInput,
|
input: RuntimeBrowseHistoryClearInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeBrowseHistoryProcedureResult, __sdk::InternalError>,
|
Result<RuntimeBrowseHistoryProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeBrowseHistoryProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeBrowseHistoryProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait click_match_3_d_item {
|
|||||||
input: Match3DRunClickInput,
|
input: Match3DRunClickInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DClickItemProcedureResult, __sdk::InternalError>,
|
Result<Match3DClickItemProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl click_match_3_d_item for super::RemoteProcedures {
|
|||||||
input: Match3DRunClickInput,
|
input: Match3DRunClickInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DClickItemProcedureResult, __sdk::InternalError>,
|
Result<Match3DClickItemProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, Match3DClickItemProcedureResult>(
|
.invoke_procedure_with_callback::<_, Match3DClickItemProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_big_fish_draft {
|
|||||||
input: BigFishDraftCompileInput,
|
input: BigFishDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_big_fish_draft for super::RemoteProcedures {
|
|||||||
input: BigFishDraftCompileInput,
|
input: BigFishDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait compile_custom_world_published_profile {
|
|||||||
input: CustomWorldPublishedProfileCompileInput,
|
input: CustomWorldPublishedProfileCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldPublishedProfileCompileResult, __sdk::InternalError>,
|
Result<CustomWorldPublishedProfileCompileResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl compile_custom_world_published_profile for super::RemoteProcedures {
|
|||||||
input: CustomWorldPublishedProfileCompileInput,
|
input: CustomWorldPublishedProfileCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldPublishedProfileCompileResult, __sdk::InternalError>,
|
Result<CustomWorldPublishedProfileCompileResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldPublishedProfileCompileResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldPublishedProfileCompileResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_jump_hop_draft {
|
|||||||
input: JumpHopDraftCompileInput,
|
input: JumpHopDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_jump_hop_draft for super::RemoteProcedures {
|
|||||||
input: JumpHopDraftCompileInput,
|
input: JumpHopDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, JumpHopAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, JumpHopAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_match_3_d_draft {
|
|||||||
input: Match3DDraftCompileInput,
|
input: Match3DDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_match_3_d_draft for super::RemoteProcedures {
|
|||||||
input: Match3DDraftCompileInput,
|
input: Match3DDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_puzzle_agent_draft {
|
|||||||
input: PuzzleDraftCompileInput,
|
input: PuzzleDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_puzzle_agent_draft for super::RemoteProcedures {
|
|||||||
input: PuzzleDraftCompileInput,
|
input: PuzzleDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_puzzle_clear_draft {
|
|||||||
input: PuzzleClearDraftCompileInput,
|
input: PuzzleClearDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_puzzle_clear_draft for super::RemoteProcedures {
|
|||||||
input: PuzzleClearDraftCompileInput,
|
input: PuzzleClearDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleClearAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleClearAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_square_hole_draft {
|
|||||||
input: SquareHoleDraftCompileInput,
|
input: SquareHoleDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_square_hole_draft for super::RemoteProcedures {
|
|||||||
input: SquareHoleDraftCompileInput,
|
input: SquareHoleDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, SquareHoleAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, SquareHoleAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_visual_novel_work_profile {
|
|||||||
input: VisualNovelWorkCompileInput,
|
input: VisualNovelWorkCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_visual_novel_work_profile for super::RemoteProcedures {
|
|||||||
input: VisualNovelWorkCompileInput,
|
input: VisualNovelWorkCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, VisualNovelAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, VisualNovelAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait compile_wooden_fish_draft {
|
|||||||
input: WoodenFishDraftCompileInput,
|
input: WoodenFishDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl compile_wooden_fish_draft for super::RemoteProcedures {
|
|||||||
input: WoodenFishDraftCompileInput,
|
input: WoodenFishDraftCompileInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, WoodenFishAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, WoodenFishAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait complete_ai_stage_and_return {
|
|||||||
input: AiStageCompletionInput,
|
input: AiStageCompletionInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl complete_ai_stage_and_return for super::RemoteProcedures {
|
|||||||
input: AiStageCompletionInput,
|
input: AiStageCompletionInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait complete_ai_task_and_return {
|
|||||||
input: AiTaskFinishInput,
|
input: AiTaskFinishInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl complete_ai_task_and_return for super::RemoteProcedures {
|
|||||||
input: AiTaskFinishInput,
|
input: AiTaskFinishInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait confirm_asset_object_and_return {
|
|||||||
input: AssetObjectUpsertInput,
|
input: AssetObjectUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AssetObjectProcedureResult, __sdk::InternalError>,
|
Result<AssetObjectProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl confirm_asset_object_and_return for super::RemoteProcedures {
|
|||||||
input: AssetObjectUpsertInput,
|
input: AssetObjectUpsertInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AssetObjectProcedureResult, __sdk::InternalError>,
|
Result<AssetObjectProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AssetObjectProcedureResult>(
|
.invoke_procedure_with_callback::<_, AssetObjectProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait confirm_asset_object {
|
|||||||
&self,
|
&self,
|
||||||
input: AssetObjectUpsertInput,
|
input: AssetObjectUpsertInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl confirm_asset_object for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: AssetObjectUpsertInput,
|
input: AssetObjectUpsertInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(ConfirmAssetObjectArgs { input }, callback)
|
.invoke_reducer_with_callback(ConfirmAssetObjectArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait consume_profile_wallet_points_and_return {
|
|||||||
input: RuntimeProfileWalletAdjustmentInput,
|
input: RuntimeProfileWalletAdjustmentInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileWalletAdjustmentProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileWalletAdjustmentProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl consume_profile_wallet_points_and_return for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileWalletAdjustmentInput,
|
input: RuntimeProfileWalletAdjustmentInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileWalletAdjustmentProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileWalletAdjustmentProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileWalletAdjustmentProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileWalletAdjustmentProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait continue_story_and_return {
|
|||||||
input: StoryContinueInput,
|
input: StoryContinueInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl continue_story_and_return for super::RemoteProcedures {
|
|||||||
input: StoryContinueInput,
|
input: StoryContinueInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
Result<StorySessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, StorySessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, StorySessionProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait continue_story {
|
|||||||
&self,
|
&self,
|
||||||
input: StoryContinueInput,
|
input: StoryContinueInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl continue_story for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: StoryContinueInput,
|
input: StoryContinueInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(ContinueStoryArgs { input }, callback)
|
.invoke_reducer_with_callback(ContinueStoryArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_ai_task_and_return {
|
|||||||
input: AiTaskCreateInput,
|
input: AiTaskCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_ai_task_and_return for super::RemoteProcedures {
|
|||||||
input: AiTaskCreateInput,
|
input: AiTaskCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait create_ai_task {
|
|||||||
&self,
|
&self,
|
||||||
input: AiTaskCreateInput,
|
input: AiTaskCreateInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl create_ai_task for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: AiTaskCreateInput,
|
input: AiTaskCreateInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(CreateAiTaskArgs { input }, callback)
|
.invoke_reducer_with_callback(CreateAiTaskArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_bark_battle_draft {
|
|||||||
input: BarkBattleDraftCreateInput,
|
input: BarkBattleDraftCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_bark_battle_draft for super::RemoteProcedures {
|
|||||||
input: BarkBattleDraftCreateInput,
|
input: BarkBattleDraftCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BarkBattleProcedureResult>(
|
.invoke_procedure_with_callback::<_, BarkBattleProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_battle_state_and_return {
|
|||||||
input: BattleStateInput,
|
input: BattleStateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BattleStateProcedureResult, __sdk::InternalError>,
|
Result<BattleStateProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_battle_state_and_return for super::RemoteProcedures {
|
|||||||
input: BattleStateInput,
|
input: BattleStateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BattleStateProcedureResult, __sdk::InternalError>,
|
Result<BattleStateProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BattleStateProcedureResult>(
|
.invoke_procedure_with_callback::<_, BattleStateProcedureResult>(
|
||||||
|
|||||||
@@ -47,11 +47,9 @@ pub trait create_battle_state {
|
|||||||
&self,
|
&self,
|
||||||
input: BattleStateInput,
|
input: BattleStateInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -60,11 +58,9 @@ impl create_battle_state for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: BattleStateInput,
|
input: BattleStateInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_reducer_with_callback(CreateBattleStateArgs { input }, callback)
|
.invoke_reducer_with_callback(CreateBattleStateArgs { input }, callback)
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_big_fish_session {
|
|||||||
input: BigFishSessionCreateInput,
|
input: BigFishSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_big_fish_session for super::RemoteProcedures {
|
|||||||
input: BigFishSessionCreateInput,
|
input: BigFishSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_custom_world_agent_session {
|
|||||||
input: CustomWorldAgentSessionCreateInput,
|
input: CustomWorldAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<CustomWorldAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_custom_world_agent_session for super::RemoteProcedures {
|
|||||||
input: CustomWorldAgentSessionCreateInput,
|
input: CustomWorldAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<CustomWorldAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_jump_hop_agent_session {
|
|||||||
input: JumpHopAgentSessionCreateInput,
|
input: JumpHopAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_jump_hop_agent_session for super::RemoteProcedures {
|
|||||||
input: JumpHopAgentSessionCreateInput,
|
input: JumpHopAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<JumpHopAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, JumpHopAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, JumpHopAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_match_3_d_agent_session {
|
|||||||
input: Match3DAgentSessionCreateInput,
|
input: Match3DAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_match_3_d_agent_session for super::RemoteProcedures {
|
|||||||
input: Match3DAgentSessionCreateInput,
|
input: Match3DAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait create_profile_recharge_order_and_return {
|
|||||||
input: RuntimeProfileRechargeOrderCreateInput,
|
input: RuntimeProfileRechargeOrderCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeCenterProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeCenterProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl create_profile_recharge_order_and_return for super::RemoteProcedures {
|
|||||||
input: RuntimeProfileRechargeOrderCreateInput,
|
input: RuntimeProfileRechargeOrderCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeProfileRechargeCenterProcedureResult, __sdk::InternalError>,
|
Result<RuntimeProfileRechargeCenterProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeProfileRechargeCenterProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeProfileRechargeCenterProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_puzzle_agent_session {
|
|||||||
input: PuzzleAgentSessionCreateInput,
|
input: PuzzleAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_puzzle_agent_session for super::RemoteProcedures {
|
|||||||
input: PuzzleAgentSessionCreateInput,
|
input: PuzzleAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_puzzle_clear_agent_session {
|
|||||||
input: PuzzleClearAgentSessionCreateInput,
|
input: PuzzleClearAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_puzzle_clear_agent_session for super::RemoteProcedures {
|
|||||||
input: PuzzleClearAgentSessionCreateInput,
|
input: PuzzleClearAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<PuzzleClearAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleClearAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleClearAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_square_hole_agent_session {
|
|||||||
input: SquareHoleAgentSessionCreateInput,
|
input: SquareHoleAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_square_hole_agent_session for super::RemoteProcedures {
|
|||||||
input: SquareHoleAgentSessionCreateInput,
|
input: SquareHoleAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, SquareHoleAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, SquareHoleAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_visual_novel_agent_session {
|
|||||||
input: VisualNovelAgentSessionCreateInput,
|
input: VisualNovelAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_visual_novel_agent_session for super::RemoteProcedures {
|
|||||||
input: VisualNovelAgentSessionCreateInput,
|
input: VisualNovelAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, VisualNovelAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, VisualNovelAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait create_wooden_fish_agent_session {
|
|||||||
input: WoodenFishAgentSessionCreateInput,
|
input: WoodenFishAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl create_wooden_fish_agent_session for super::RemoteProcedures {
|
|||||||
input: WoodenFishAgentSessionCreateInput,
|
input: WoodenFishAgentSessionCreateInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, WoodenFishAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, WoodenFishAgentSessionProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_bark_battle_work {
|
|||||||
input: BarkBattleWorkDeleteInput,
|
input: BarkBattleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_bark_battle_work for super::RemoteProcedures {
|
|||||||
input: BarkBattleWorkDeleteInput,
|
input: BarkBattleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
Result<BarkBattleProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BarkBattleProcedureResult>(
|
.invoke_procedure_with_callback::<_, BarkBattleProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_big_fish_work {
|
|||||||
input: BigFishWorkDeleteInput,
|
input: BigFishWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishWorksProcedureResult, __sdk::InternalError>,
|
Result<BigFishWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_big_fish_work for super::RemoteProcedures {
|
|||||||
input: BigFishWorkDeleteInput,
|
input: BigFishWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishWorksProcedureResult, __sdk::InternalError>,
|
Result<BigFishWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BigFishWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, BigFishWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_custom_world_agent_session {
|
|||||||
input: CustomWorldAgentSessionGetInput,
|
input: CustomWorldAgentSessionGetInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldWorksListResult, __sdk::InternalError>,
|
Result<CustomWorldWorksListResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_custom_world_agent_session for super::RemoteProcedures {
|
|||||||
input: CustomWorldAgentSessionGetInput,
|
input: CustomWorldAgentSessionGetInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldWorksListResult, __sdk::InternalError>,
|
Result<CustomWorldWorksListResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldWorksListResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldWorksListResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_custom_world_profile_and_return {
|
|||||||
input: CustomWorldProfileDeleteInput,
|
input: CustomWorldProfileDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldProfileListResult, __sdk::InternalError>,
|
Result<CustomWorldProfileListResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_custom_world_profile_and_return for super::RemoteProcedures {
|
|||||||
input: CustomWorldProfileDeleteInput,
|
input: CustomWorldProfileDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldProfileListResult, __sdk::InternalError>,
|
Result<CustomWorldProfileListResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldProfileListResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldProfileListResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_jump_hop_work {
|
|||||||
input: JumpHopWorkDeleteInput,
|
input: JumpHopWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopWorksProcedureResult, __sdk::InternalError>,
|
Result<JumpHopWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_jump_hop_work for super::RemoteProcedures {
|
|||||||
input: JumpHopWorkDeleteInput,
|
input: JumpHopWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<JumpHopWorksProcedureResult, __sdk::InternalError>,
|
Result<JumpHopWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, JumpHopWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, JumpHopWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_match_3_d_work {
|
|||||||
input: Match3DWorkDeleteInput,
|
input: Match3DWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DWorksProcedureResult, __sdk::InternalError>,
|
Result<Match3DWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_match_3_d_work for super::RemoteProcedures {
|
|||||||
input: Match3DWorkDeleteInput,
|
input: Match3DWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DWorksProcedureResult, __sdk::InternalError>,
|
Result<Match3DWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, Match3DWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, Match3DWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_puzzle_work {
|
|||||||
input: PuzzleWorkDeleteInput,
|
input: PuzzleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleWorksProcedureResult, __sdk::InternalError>,
|
Result<PuzzleWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_puzzle_work for super::RemoteProcedures {
|
|||||||
input: PuzzleWorkDeleteInput,
|
input: PuzzleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleWorksProcedureResult, __sdk::InternalError>,
|
Result<PuzzleWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_runtime_snapshot_and_return {
|
|||||||
input: RuntimeSnapshotDeleteInput,
|
input: RuntimeSnapshotDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeSnapshotProcedureResult, __sdk::InternalError>,
|
Result<RuntimeSnapshotProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_runtime_snapshot_and_return for super::RemoteProcedures {
|
|||||||
input: RuntimeSnapshotDeleteInput,
|
input: RuntimeSnapshotDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<RuntimeSnapshotProcedureResult, __sdk::InternalError>,
|
Result<RuntimeSnapshotProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, RuntimeSnapshotProcedureResult>(
|
.invoke_procedure_with_callback::<_, RuntimeSnapshotProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_square_hole_work {
|
|||||||
input: SquareHoleWorkDeleteInput,
|
input: SquareHoleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleWorksProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_square_hole_work for super::RemoteProcedures {
|
|||||||
input: SquareHoleWorkDeleteInput,
|
input: SquareHoleWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleWorksProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, SquareHoleWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, SquareHoleWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_visual_novel_work {
|
|||||||
input: VisualNovelWorkDeleteInput,
|
input: VisualNovelWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelWorksProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_visual_novel_work for super::RemoteProcedures {
|
|||||||
input: VisualNovelWorkDeleteInput,
|
input: VisualNovelWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<VisualNovelWorksProcedureResult, __sdk::InternalError>,
|
Result<VisualNovelWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, VisualNovelWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, VisualNovelWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait delete_wooden_fish_work {
|
|||||||
input: WoodenFishWorkDeleteInput,
|
input: WoodenFishWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishWorksProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl delete_wooden_fish_work for super::RemoteProcedures {
|
|||||||
input: WoodenFishWorkDeleteInput,
|
input: WoodenFishWorkDeleteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<WoodenFishWorksProcedureResult, __sdk::InternalError>,
|
Result<WoodenFishWorksProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, WoodenFishWorksProcedureResult>(
|
.invoke_procedure_with_callback::<_, WoodenFishWorksProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait drag_puzzle_piece_or_group {
|
|||||||
input: PuzzleRunDragInput,
|
input: PuzzleRunDragInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl drag_puzzle_piece_or_group for super::RemoteProcedures {
|
|||||||
input: PuzzleRunDragInput,
|
input: PuzzleRunDragInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
Result<PuzzleRunProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, PuzzleRunProcedureResult>(
|
.invoke_procedure_with_callback::<_, PuzzleRunProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait drop_square_hole_shape {
|
|||||||
input: SquareHoleRunDropInput,
|
input: SquareHoleRunDropInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleDropShapeProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleDropShapeProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl drop_square_hole_shape for super::RemoteProcedures {
|
|||||||
input: SquareHoleRunDropInput,
|
input: SquareHoleRunDropInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<SquareHoleDropShapeProcedureResult, __sdk::InternalError>,
|
Result<SquareHoleDropShapeProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, SquareHoleDropShapeProcedureResult>(
|
.invoke_procedure_with_callback::<_, SquareHoleDropShapeProcedureResult>(
|
||||||
|
|||||||
@@ -50,11 +50,9 @@ pub trait ensure_analytics_date_dimension_for_date {
|
|||||||
&self,
|
&self,
|
||||||
input: AnalyticsDateDimensionEnsureInput,
|
input: AnalyticsDateDimensionEnsureInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()>;
|
) -> __sdk::Result<()>;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -63,11 +61,9 @@ impl ensure_analytics_date_dimension_for_date for super::RemoteReducers {
|
|||||||
&self,
|
&self,
|
||||||
input: AnalyticsDateDimensionEnsureInput,
|
input: AnalyticsDateDimensionEnsureInput,
|
||||||
|
|
||||||
callback: impl FnOnce(
|
callback: impl FnOnce(&super::ReducerEventContext, Result<Result<(), String>, __sdk::InternalError>)
|
||||||
&super::ReducerEventContext,
|
+ Send
|
||||||
Result<Result<(), String>, __sdk::InternalError>,
|
+ 'static,
|
||||||
) + Send
|
|
||||||
+ 'static,
|
|
||||||
) -> __sdk::Result<()> {
|
) -> __sdk::Result<()> {
|
||||||
self.imp.invoke_reducer_with_callback(
|
self.imp.invoke_reducer_with_callback(
|
||||||
EnsureAnalyticsDateDimensionForDateArgs { input },
|
EnsureAnalyticsDateDimensionForDateArgs { input },
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait execute_custom_world_agent_action {
|
|||||||
input: CustomWorldAgentActionExecuteInput,
|
input: CustomWorldAgentActionExecuteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentActionExecuteResult, __sdk::InternalError>,
|
Result<CustomWorldAgentActionExecuteResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl execute_custom_world_agent_action for super::RemoteProcedures {
|
|||||||
input: CustomWorldAgentActionExecuteInput,
|
input: CustomWorldAgentActionExecuteInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentActionExecuteResult, __sdk::InternalError>,
|
Result<CustomWorldAgentActionExecuteResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldAgentActionExecuteResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldAgentActionExecuteResult>(
|
||||||
|
|||||||
@@ -27,10 +27,10 @@ pub trait export_auth_store_snapshot_from_tables {
|
|||||||
&self,
|
&self,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AuthStoreSnapshotProcedureResult, __sdk::InternalError>,
|
Result<AuthStoreSnapshotProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -39,10 +39,10 @@ impl export_auth_store_snapshot_from_tables for super::RemoteProcedures {
|
|||||||
&self,
|
&self,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AuthStoreSnapshotProcedureResult, __sdk::InternalError>,
|
Result<AuthStoreSnapshotProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AuthStoreSnapshotProcedureResult>(
|
.invoke_procedure_with_callback::<_, AuthStoreSnapshotProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait export_database_migration_to_file {
|
|||||||
input: DatabaseMigrationExportInput,
|
input: DatabaseMigrationExportInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl export_database_migration_to_file for super::RemoteProcedures {
|
|||||||
input: DatabaseMigrationExportInput,
|
input: DatabaseMigrationExportInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
Result<DatabaseMigrationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, DatabaseMigrationProcedureResult>(
|
.invoke_procedure_with_callback::<_, DatabaseMigrationProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait fail_ai_task_and_return {
|
|||||||
input: AiTaskFailureInput,
|
input: AiTaskFailureInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl fail_ai_task_and_return for super::RemoteProcedures {
|
|||||||
input: AiTaskFailureInput,
|
input: AiTaskFailureInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
Result<AiTaskProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
.invoke_procedure_with_callback::<_, AiTaskProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait finalize_big_fish_agent_message_turn {
|
|||||||
input: BigFishMessageFinalizeInput,
|
input: BigFishMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl finalize_big_fish_agent_message_turn for super::RemoteProcedures {
|
|||||||
input: BigFishMessageFinalizeInput,
|
input: BigFishMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
Result<BigFishSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, BigFishSessionProcedureResult>(
|
||||||
|
|||||||
@@ -34,10 +34,10 @@ pub trait finalize_custom_world_agent_message_turn {
|
|||||||
input: CustomWorldAgentMessageFinalizeInput,
|
input: CustomWorldAgentMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentOperationProcedureResult, __sdk::InternalError>,
|
Result<CustomWorldAgentOperationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -47,10 +47,10 @@ impl finalize_custom_world_agent_message_turn for super::RemoteProcedures {
|
|||||||
input: CustomWorldAgentMessageFinalizeInput,
|
input: CustomWorldAgentMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<CustomWorldAgentOperationProcedureResult, __sdk::InternalError>,
|
Result<CustomWorldAgentOperationProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, CustomWorldAgentOperationProcedureResult>(
|
.invoke_procedure_with_callback::<_, CustomWorldAgentOperationProcedureResult>(
|
||||||
|
|||||||
@@ -31,10 +31,10 @@ pub trait finalize_match_3_d_agent_message_turn {
|
|||||||
input: Match3DAgentMessageFinalizeInput,
|
input: Match3DAgentMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -44,10 +44,10 @@ impl finalize_match_3_d_agent_message_turn for super::RemoteProcedures {
|
|||||||
input: Match3DAgentMessageFinalizeInput,
|
input: Match3DAgentMessageFinalizeInput,
|
||||||
|
|
||||||
__callback: impl FnOnce(
|
__callback: impl FnOnce(
|
||||||
&super::ProcedureEventContext,
|
&super::ProcedureEventContext,
|
||||||
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
Result<Match3DAgentSessionProcedureResult, __sdk::InternalError>,
|
||||||
) + Send
|
) + Send
|
||||||
+ 'static,
|
+ 'static,
|
||||||
) {
|
) {
|
||||||
self.imp
|
self.imp
|
||||||
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
.invoke_procedure_with_callback::<_, Match3DAgentSessionProcedureResult>(
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user