Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
bc0b20fb
Commit
bc0b20fb
authored
Feb 26, 2015
by
David Renshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update some comments
parent
b0599220
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
ez-rpc.h
c++/src/capnp/ez-rpc.h
+1
-1
async-io.h
c++/src/kj/async-io.h
+1
-1
async.h
c++/src/kj/async.h
+1
-1
No files found.
c++/src/capnp/ez-rpc.h
View file @
bc0b20fb
...
...
@@ -90,7 +90,7 @@ class EzRpcClient {
// Some of these restrictions will probably be lifted in future versions, but some things will
// always require using the low-level interfaces directly. If you are interested in working
// at a lower level, start by looking at these interfaces:
// - `kj::s
tart
AsyncIo()` in `kj/async-io.h`.
// - `kj::s
etup
AsyncIo()` in `kj/async-io.h`.
// - `RpcSystem` in `capnp/rpc.h`.
// - `TwoPartyVatNetwork` in `capnp/rpc-twoparty.h`.
...
...
c++/src/kj/async-io.h
View file @
bc0b20fb
...
...
@@ -473,7 +473,7 @@ AsyncIoContext setupAsyncIo();
//
// // And we can wait for the promise to complete. Note that you can only use `wait()`
// // from the top level, not from inside a promise callback.
// String text = textPromise.wait();
// String text = textPromise.wait(
ioContext.waitScope
);
// print(text);
// return 0;
// }
...
...
c++/src/kj/async.h
View file @
bc0b20fb
...
...
@@ -597,7 +597,7 @@ class EventLoop {
// return 0;
// }
//
// Most applications that do I/O will prefer to use `setup
IoEventLoop
()` from `async-io.h` rather
// Most applications that do I/O will prefer to use `setup
AsyncIo
()` from `async-io.h` rather
// than allocate an `EventLoop` directly.
public
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment