- java.lang.Object
-
- org.praxislive.hub.net.ChildLauncher.Info
-
- Enclosing interface:
- ChildLauncher
public static class ChildLauncher.Info extends Object
Information about the launched child process.
-
-
Constructor Summary
Constructors Constructor Description Info(Process handle, SocketAddress address)
Construct an Info object, for use by ChildLauncher implementation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SocketAddress
address()
Access theSocketAddress
to connect to the child.Process
handle()
Access theProcess
handle of the child.
-
-
-
Constructor Detail
-
Info
public Info(Process handle, SocketAddress address)
Construct an Info object, for use by ChildLauncher implementation.- Parameters:
handle
- Process of child.address
- SocketAddress to connect to child.
-
-
Method Detail
-
handle
public final Process handle()
Access theProcess
handle of the child.- Returns:
- process handle
-
address
public final SocketAddress address()
Access theSocketAddress
to connect to the child.- Returns:
- address of the child
-
-