org.redkalex.source.mysql.MyReqVirtual Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redkale-plugins Show documentation
Show all versions of redkale-plugins Show documentation
Redkale-Plugins -- java framework
/*
*
*/
package org.redkalex.source.mysql;
import java.util.Objects;
import org.redkale.net.client.ClientConnection;
import org.redkale.util.ByteArray;
/** @author zhangjx */
public class MyReqVirtual extends MyClientRequest {
@Override
public void writeTo(ClientConnection conn, ByteArray array) {}
@Override
public int getType() {
return 0;
}
@Override
public boolean isVirtualType() {
return true;
}
@Override
public String toString() {
return getClass().getSimpleName() + "_" + Objects.hash(this) + "{virtual}";
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy