You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"only 'distributed' functions can be called from outside the distributed actor",
4440
-
())
4439
+
"only 'distributed' functions can be called from outside the distributed actor",// TODO: improve error message
4440
+
())
4441
4441
ERROR(distributed_actor_isolated_method,none,
4442
4442
"only 'distributed' functions can be called from outside the distributed actor", // TODO: improve error message to be more like 'non-distributed' ... defined here
// TODO: most likely where we'd need to create the "proxy instance" instead?
1760
-
voidswift::swift_distributedActor_remote_initialize(DefaultActor *_actor) { // FIXME: !!!!! remove distributed C++ impl not needed?
1759
+
// TODO: most likely where we'd need to create the "proxy instance" instead? (most likely remove this and use swift_distributedActor_remote_create instead)
1760
+
voidswift::swift_distributedActor_remote_initialize(DefaultActor *_actor) { // FIXME: remove distributed C++ impl not needed?
1761
1761
auto actor = asImpl(_actor);
1762
1762
actor->initialize(/*remote=*/true);
1763
1763
}
1764
1764
1765
-
voidswift::swift_distributedActor_destroy(DefaultActor *_actor) { // FIXME: !!!!! remove distributed C++ impl not needed?
1765
+
// TODO: missing implementation of creating a proxy for the remote actor
0 commit comments