All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hyf.hotrefresh.core.event.ByteCodeRefreshedEvent Maven / Gradle / Ivy

package com.hyf.hotrefresh.core.event;

import java.util.Map;

/**
 * @author baB_hyf
 * @date 2022/05/18
 */
public class ByteCodeRefreshedEvent extends HotRefreshEvent {

    public ByteCodeRefreshedEvent(Map compiledBytes) {
        super(compiledBytes);
    }

    public Map getCompiledBytes() {
        return (Map) this.getSource();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy