gpt4 book ai didi

ballerina - 如何将变量传递给芭蕾舞 Actor ?

转载 作者:行者123 更新时间:2023-12-04 17:52:59 25 4
gpt4 key购买 nike

我正在尝试将一些代码重构到 worker 中,但出现错误:

undefined symbol userId

似乎工作人员无法从其上方的范围中看到变量。如何让工作人员看到传入的参数?

import ballerina.net.http;
import ballerina.lang.messages;
import ballerina.lang.jsons;

@http:BasePath ("/foo")
service barApi {
http:ClientConnector endpointEP = create http:ClientConnector("http://example.com");

@http:GET
@http:Path("/users/{userId}")
resource users (message m,
@http:PathParam("userId") string userId) {
worker sampleWorker(message m) {
string requestPath = "/user/" + userId;
message response = http:ClientConnector.get(endpointEP, requestPath, m);

最佳答案

您可以使用新的 worker 交互设计将任意数量的变量传递给芭蕾舞 Actor 。假设您想将 2 个变量从您的默认工作程序(主要)传递给另一个工作程序 W1,这是示例代码。

import ballerina.lang.system;

function main(string[] args) {
int x = 10;
string s = "Test";
x, s -> W1;

worker W1 {
int y;
string t;
y,t <- default;
system:println("Inside worker " + y + " " + t);

}
}

关于ballerina - 如何将变量传递给芭蕾舞 Actor ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43001271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com