- Notifications
You must be signed in to change notification settings - Fork1.1k
Can CC helps tracking the Reference Counting problem?#18556
He-Pin started this conversation inCC experiment
-
After reading the doc of cc, I still now get how CC can help tracking theReference Counting problem. Can CC helps here? defuseByteBuf():Unit { withByteBuf {buf=>valbytes=ByteBufUtil.getBytes(buf)// some usage never call byteBuf.release }}defwithByteBuf(op:ByteBuf^=>Unit):Unit= {valallocator= pooledByteBufAllocatorvalbuf= allocator.byteBuf(1024) op(buf)//... never call byteBuf.release} Can CC help and reporting the |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 0 comments
Sign up for freeto join this conversation on GitHub. Already have an account?Sign in to comment