The Wayback Machine - https://web.archive.org/web/20200414161218/https://github.com/topics/netty
Skip to content
#

netty

Here are 1,000 public repositories matching this topic...

InfoSec812
InfoSec812 commented Mar 20, 2020

Version

3.8.5

Context

When attempting to use Future.otherwise and Future.recover it was not clear what the intended differences were meant to be.

Do you have a reproducer?

No, N/A

Extra

I intend to submit a PR with a proposed update to the JavaDocs and perhaps the Vert.x documentation in order to make the use of these methods more clear in a broader context

bug
thingsboard
anyetanxi2017
anyetanxi2017 commented Mar 9, 2020

这是TreeMap的源码.

public class TreeMapConsistentHash extends AbstractConsistentHash {
    private TreeMap<Long,String> treeMap = new TreeMap<Long, String>() ;

    /**
     * 虚拟节点数量
     */
    private static final int VIRTUAL_NODE_SIZE = 2 ;

    @Override
    public void add(long key, String value) {
        for (int i = 0; i < VIRTUAL_NODE_SIZE; i++) {
            Long hash = super
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

ljamen
ljamen commented Apr 8, 2020

#774 Environment Details

  • Helidon Version: 2.0
  • Helidon SE

Problem Description

Introduction to Helidon SE [overview]

Nice image with components (from slides) or cards
Update components list, add links
What it is, why you should use it, some basic examples. 

Blynk is an Internet of Things Platform aimed to simplify building mobile and web applications for the Internet of Things. Easily connect 400+ hardware models like Arduino, ESP8266, ESP32, Raspberry Pi and similar MCUs and drag-n-drop IOT mobile apps for iOS and Android in 5 minutes

  • Updated Apr 4, 2020
  • Java
michaelr524
michaelr524 commented Apr 6, 2020

Please check the reproducible example here: https://github.com/michaelr524/reactor-netty-ssl-leak

mvn clean package
java -jar target/reactor-netty-ssl-leak-1.0-SNAPSHOT.jar 
  • Reactor version(s) used: 0.9.4.RELEASE
  • Other relevant libraries versions (eg. netty, ...):
  • JVM version (javar -version):
    openjdk version "12.0.2" 2019-07-16
    OpenJDK Runtime Environment (build 12.0

使用netty4.X实现的手机游戏分布式服务器,支持tcp,udp,http,websocket链接,采用protobuf自定义协议栈进行网络通信,支持rpc远程调用,使用mybatis3支持db存储分库分表,支持异步mysql存储,db保存时同步更新reids缓存。 使用ExcelToCode工程,将excel数据生成java类和json数据字典,DictService直接读取json,减少数据字典部分代码。使用game-executor工程,增加游戏内的异步事件全局服务, 支持事件sharding,均衡的异步执行事件逻辑

  • Updated Oct 29, 2019
  • Java
dobretzberger
dobretzberger commented Dec 19, 2019

There is a confusion with the description for the file-upload-modules:

  1. The README says nothing about unfiltered-filter-uploads, but it is the module that I needed to get the things done.

  2. The README only refers to unfiltered-uploads, but with a wrong description Provides extractors for multipart posts using the servlet API. But the extractor MultiPart is in `unfiltered-filter-up

Improve this page

Add a description, image, and links to the netty 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 netty topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.