com.github.zella.rxprocess2.RxProcessConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rx-process2 Show documentation
Show all versions of rx-process2 Show documentation
rx-java2 wrapper for NuProcess
The newest version!
package com.github.zella.rxprocess2;
public final class RxProcessConfig {
private RxProcessConfig() {
}
public static final int STDERR_BUFF_SIZE = Integer.getInteger("rxprocess2.stderrBuffer", 4096);
public static final int GRACEFULL_STOP_SECONDS = Integer.getInteger("rxprocess2.gracefullStopSeconds", 1);
public static final int DEFAULT_PROCESS_TIMEOUT_MILLIS = Integer.getInteger("rxprocess2.timeOutMillis", -1);
public static final int DEFAULT_READ_BUFFER = Integer.getInteger("rxprocess2.readBuffer", 8192);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy