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();
}
}