frame.retain() 是什么意思

来源:5-4 WebSocket连接业务的实现

五行_缺钱

2019-08-28 16:48

frame.retain() 是什么意思,查了一下和引用计数有关,引用计数是什么东西啊

写回答 关注

2回答

  • richardbigzhou
    2019-10-17 23:25:46
    类的关系: frame是个 WebSocketFrame 
    public abstract class WebSocketFrame extends DefaultByteBufHolder 
    
    而WebSocketFrame 实现:
    public class DefaultByteBufHolder implements ByteBufHolder {
        private final ByteBuf data;
    
        public DefaultByteBufHolder(ByteBuf data) {
            if (data == null) {
                throw new NullPointerException("data");
            } else {
                this.data = data;
            }
        }
    
        public ByteBuf content() {
            if (this.data.refCnt() <= 0) {
                throw new IllegalReferenceCountException(this.data.refCnt());
            } else {
                return this.data;
            }
        }
    
        public ByteBufHolder copy() {
            return new DefaultByteBufHolder(this.data.copy());
        }
    
        public ByteBufHolder duplicate() {
            return new DefaultByteBufHolder(this.data.duplicate());
        }
    
        public int refCnt() {
            return this.data.refCnt();
        }
    
        public ByteBufHolder retain() {
            this.data.retain();
            return this;
        }
    
        public ByteBufHolder retain(int increment) {
            this.data.retain(increment);
            return this;
        }
    
        public boolean release() {
            return this.data.release();
        }
    
        public boolean release(int decrement) {
            return this.data.release(decrement);
        }
    
        public String toString() {
            return StringUtil.simpleClassName(this) + '(' + this.content().toString() + ')';
        }
    }

    前一次回答里2个类名标注了粗体字,不知何故类名都不见了。

  • richardbigzhou
    2019-10-17 23:20:41

    类的关系:
    public abstract class  extends DefaultByteBufHolder
    public class  implements ByteBufHolder {
        private final ByteBuf data;
    
        public DefaultByteBufHolder(ByteBuf data) {
            if (data == null) {
                throw new NullPointerException("data");
            } else {
                this.data = data;
            }
        }
    
        public ByteBuf content() {
            if (this.data.refCnt() <= 0) {
                throw new IllegalReferenceCountException(this.data.refCnt());
            } else {
                return this.data;
            }
        }
    
        public ByteBufHolder copy() {
            return new DefaultByteBufHolder(this.data.copy());
        }
    
        public ByteBufHolder duplicate() {
            return new DefaultByteBufHolder(this.data.duplicate());
        }
    
        public int refCnt() {
            return this.data.refCnt();
        }
    
        public ByteBufHolder  {
            this.data.retain();
            return this;
        }
    
        public ByteBufHolder retain(int increment) {
            this.data.retain(increment);
            return this;
        }
    
        public boolean release() {
            return this.data.release();
        }
    
        public boolean release(int decrement) {
            return this.data.release(decrement);
        }
    
        public String toString() {
            return StringUtil.simpleClassName(this) + '(' + this.content().toString() + ')';
        }
    }



    abstract ByteBufretain()

    Increases the reference count by 1.



Netty入门之WebSocket初体验

由浅入深了解Java高性能NIO通信首选框架——Netty

29325 学习 · 63 问题

查看课程

相似问题