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

org.rzo.yajsw.os.posix.bsd.BSDProcessManager Maven / Gradle / Ivy

Go to download

YAJSW is a java centric implementation of the java service wrapper by tanuki (JSW). It aims at being mostly configuration compliant with the original. It should therefore be easy to switch from JSW to YAJSW.

The newest version!
package org.rzo.yajsw.os.posix.bsd;

import org.rzo.yajsw.os.Process;
import org.rzo.yajsw.os.posix.PosixProcessManager;

public class BSDProcessManager extends PosixProcessManager
{
	public Process createProcess()
	{
		return (Process) new BSDProcess();
	}

	public Process getProcess(int pid)
	{
		return BSDProcess.getProcess(pid);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy