Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Minor fix for Concrete executor
  • Loading branch information
olganaumenko committed Dec 27, 2022
commit 16ce51757d6d8e97be9e688c909df49541299038
2 changes: 1 addition & 1 deletion docs/OverallArchitecture.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ suspend fun executeAsync(
parameters: Any?
): TResult
```
It serializes the arguments and some parameters (e.g., static), sends it to the _instrumented process_ and retrieves the result.
It serializes the arguments and some parameters (e.g., static fields), sends it to the _instrumented process_ and retrieves the result.

Internally, `ConcreteExecutor` uses `Rd` for interprocess communication and `Kryo` for objects serialization. You don't need to provide a marshaller, as `Kryo` serializes the objects (sometimes it fails).

Expand Down