[Distributed] Implement RemoteCallArgument

This commit is contained in:
Konrad `ktoso` Malawski
2022-03-16 19:21:24 +09:00
parent 20f28f8c3c
commit 5a5d1ba2e6
26 changed files with 283 additions and 103 deletions

View File

@@ -151,7 +151,7 @@ public struct LocalTestingInvocationEncoder: DistributedTargetInvocationEncoder
fatalError("Attempted to call encoder method in a local-only actor system")
}
public mutating func recordArgument<Argument: SerializationRequirement>(_ argument: Argument) throws {
public mutating func recordArgument<Value: SerializationRequirement>(_ argument: RemoteCallArgument<Value>) throws {
fatalError("Attempted to call encoder method in a local-only actor system")
}