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

package io.netty.buffer;

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

@Label("Chunk Return")
@Name("io.netty.ReturnChunk")
@Description("Triggered when a memory chunk is prepared for re-use by an allocator")
final class ReturnChunkEvent extends AbstractChunkEvent
{
    static final String NAME = "io.netty.ReturnChunk";
    private static final ReturnChunkEvent INSTANCE;
    @Description("Was this chunk returned to its previous magazine?")
    public boolean returnedToMagazine;
    
    public static boolean isEventEnabled() {
        return ReturnChunkEvent.INSTANCE.isEnabled();
    }
    
    static {
        INSTANCE = new ReturnChunkEvent();
    }
}
