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

io.edurt.datacap.core.RedisClient Maven / Gradle / Ivy

The newest version!
package io.edurt.datacap.core;

import java.sql.SQLException;

public interface RedisClient
{
    String[] sendCommand(String sql)
            throws SQLException;

    void select(int dbIndex)
            throws SQLException;

    void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy