losye / ChargeServer

the server for client of chaegedevice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Netty Server

selector.select()

pipeline.fireChannelRead()

 new DefaultChannelPipeline(){
     tail = new TailContext(this);
        head = new HeadContext(this);
    
        head.next = tail;
        tail.prev = head;
    
        ChannelInitializer(){
            initChannel(ctx){
                ...
                finally{
                    remove(ctx)    
                }
              }
        }
 }

About

the server for client of chaegedevice


Languages

Language:Java 100.0%