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

org.nervos.appchain.console.IODevice Maven / Gradle / Ivy

The newest version!
package org.nervos.appchain.console;

/**
 * IO device abstraction.
 */
public interface IODevice {
    void printf(String format, Object... args);

    String readLine(String fmt, Object... args);

    char[] readPassword(String fmt, Object... args);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy