Package cx.ath.matthew.unix
Class UnixSocketAddress
- java.lang.Object
-
- cx.ath.matthew.unix.UnixSocketAddress
-
public class UnixSocketAddress extends Object
Represents an address for a Unix Socket
-
-
Constructor Summary
Constructors Constructor Description UnixSocketAddress(String path)Create the address.UnixSocketAddress(String path, boolean abs)Create the address.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)StringgetPath()Return the path.inthashCode()booleanisAbstract()Returns true if this an address for an abstract socket.StringtoString()Return the Address as a String.
-
-
-
Constructor Detail
-
UnixSocketAddress
public UnixSocketAddress(String path, boolean abs)
Create the address.- Parameters:
path- The path to the Unix Socket.abs- True if this should be an abstract socket.
-
UnixSocketAddress
public UnixSocketAddress(String path)
Create the address.- Parameters:
path- The path to the Unix Socket.
-
-