// 
// Decompiled by Procyon v0.6.0
// 

package io.netty.buffer;

import jdk.jfr.Description;
import jdk.jfr.Name;
import jdk.jfr.Label;

@Label("Chunk Free")
@Name("io.netty.FreeChunk")
@Description("Triggered when a memory chunk is freed from an allocator")
final class FreeChunkEvent extends AbstractChunkEvent
{
    static final String NAME = "io.netty.FreeChunk";
    private static final FreeChunkEvent INSTANCE;
    @Description("Was this chunk pooled, or was it a one-off allocation for a single buffer?")
    public boolean pooled;
    
    public static boolean isEventEnabled() {
        return FreeChunkEvent.INSTANCE.isEnabled();
    }
    
    static {
        INSTANCE = new FreeChunkEvent();
    }
}
