Files
jlibloader/src/main/java/net/rubygrapefruit/platform/Process.java
2012-09-08 10:11:39 +10:00

16 lines
332 B
Java
Executable File

package net.rubygrapefruit.platform;
/**
* Functions to query and modify a process' state.
*/
@ThreadSafe
public interface Process extends NativeIntegration {
/**
* Returns the process identifier.
*
* @throws NativeException On failure.
*/
@ThreadSafe
int getProcessId() throws NativeException;
}