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

com.github.liuzhengyang.simpleapm.agent.Terminal Maven / Gradle / Ivy

There is a newer version: 1.10.5
Show newest version
package com.github.liuzhengyang.simpleapm.agent;

import io.vertx.ext.shell.command.CommandProcess;

public class Terminal {
    private static volatile CommandProcess currentProcess;
    public static void write(String output) {
        getCurrentProcess().write(output);
    }

    public static CommandProcess getCurrentProcess() {
        return currentProcess;
    }

    public static void setCurrentProcess(CommandProcess currentProcess) {
        Terminal.currentProcess = currentProcess;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy