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

com.hyf.hotrefresh.plugin.execute.payload.RpcExecutableRequest Maven / Gradle / Ivy

package com.hyf.hotrefresh.plugin.execute.payload;

import com.hyf.hotrefresh.core.remoting.payload.RpcHotRefreshRequest;
import com.hyf.hotrefresh.core.remoting.payload.RpcHotRefreshRequestInst;
import com.hyf.hotrefresh.remoting.rpc.enums.RpcMessageType;

/**
 * @author baB_hyf
 * @date 2022/05/17
 */
public class RpcExecutableRequest extends RpcHotRefreshRequest {

    public RpcExecutableRequest() {
        super();
        this.setInst(RpcHotRefreshRequestInst.CREATE);
    }

    @Override
    public byte getMessageCode() {
        return RpcMessageType.REQUEST_EXECUTABLE;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy