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

org.redkalex.source.mysql.MyReqVirtual Maven / Gradle / Ivy

There is a newer version: 2.7.7
Show newest version
/*
 *
 */
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