Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions capnp/proxy.capnp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,10 @@ interface ThreadMap $count(0) {
# execute on. Clients create and name threads and pass the thread handle as
# a call parameter.
makeThread @0 (name :Text) -> (result :Thread);
# Pre-allocate a pool of server threads for implicit dispatch. When a
# request arrives with no context.thread set, the server dispatches it
# through this pool via a shared work queue.
makePool @1 (count :UInt32) -> ();
}

interface Thread {
Expand Down
Loading
Loading