Skip to content

Commit 1a36fd8

Browse files
authored
Update README.md
1 parent ca7ceed commit 1a36fd8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,10 @@ This repository clone adds an implementation of the RPC framework for Java.
1111

1212
Promise pipelining is provided via java.util.concurrent.CompletableFuture. Unlike the KJ asynchronous model, which completes promises
1313
only when they are waited upon, a CompletableFuture can complete immediately. This may break E-ordering, as the C++ implementation
14-
relies on kj::evalLater() to defer method calls, and there is no obvious (to me, anyway) way to replicate the behaviour of
15-
kj::evalLater() with CompletableFutures.
14+
relies on kj::evalLater() to defer method calls and this implementation may have subtle differences.
1615

1716
Most of the C++ RPC test cases have been ported to this implementation, which gives me some comfort that the implementation logic is
1817
correct, but more extensive testing is required.
1918

2019
This implementation does not support generic interfaces. Extending the schema compiler to output code for generic interfaces is an
2120
exercise I leave to the reader.
22-
23-

0 commit comments

Comments
 (0)