The Wayback Machine - https://web.archive.org/web/20201024125301/https://github.com/topics/rpc-server
Skip to content
#

rpc-server

Here are 107 public repositories matching this topic...

armeria
ikhoon
ikhoon commented Mar 19, 2020

In our codebase, we push RequestContext and immediately run some code with try-with-resources.
For example:

try (SafeCloseable ignored = ctx.push()) {
    logger.trace(decorate(msg));
}

If RequestContext provides run(Runnable) or call(Callable) we can reduce boilerplate code and simplify it.

ctx.run(() -> logger.trace(decorate(msg));

This is inspired by g

Improve this page

Add a description, image, and links to the rpc-server topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the rpc-server topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.