I have a C# NET application that manages a Java process. When my app starts, it starts up the java process, and keeps it running until my application is shut down. I am working on making it so that any changes to my application's priority/affinity are replicated to the process it is managing. Is this the proper way to do it though?
"JavaProcess" is a "static private Process" at the Class level.
public static void LaunchMinecraft(String file, String minMemory, String maxMemory)
{
try
{
using (Process minecraftProcess = Process.Start(processInfo))
{
JavaProcess = minecraftProcess;
//GlobalClass.ProcessID = minecraftProcess.Id;
PollTimer = new System.Timers.Timer();
PollTimer.Elapsed += new ElapsedEventHandler(Event_PollProcess);
PollTimer.Interval = 30000;
PollTimer.Start();
Then my PollProcess Timer Event...
static void Event_PollProcess(object sender, ElapsedEventArgs e)
{
if (JavaProcess != null)
{
Process thisProcess = System.Diagnostics.Process.GetCurrentProcess();
JavaProcess.ProcessorAffinity = thisProcess.ProcessorAffinity;
JavaProcess.PriorityClass = thisProcess.PriorityClass;
JavaProcess.PriorityBoostEnabled = thisProcess.PriorityBoostEnabled;
}
}