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

com.github.housepower.jdbc.protocol.PingRequest Maven / Gradle / Ivy

package com.github.housepower.jdbc.protocol;

import com.github.housepower.jdbc.serializer.BinarySerializer;

import java.io.IOException;

public class PingRequest extends RequestOrResponse {

    public PingRequest() {
        super(ProtocolType.REQUEST_PING);
    }

    @Override
    public void writeImpl(BinarySerializer serializer) throws IOException {
        //Nothing
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy