Class CacheClient
- java.lang.Object
-
- com.alachisoft.ncache.runtime.cachemanagement.CacheClient
-
public class CacheClient extends java.lang.Object
CacheClient class contains information about CacheClient. ProcessId ,ClientIp and Port of the Client process.
-
-
Constructor Summary
Constructors Constructor Description CacheClient()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getClientIP()
Gets the IPAddress of the cache client.int
getPort()
Gets the port of the cache client.java.lang.String
getProcessID()
Gets the process id of the cache client.void
setClientIP(java.lang.String value)
Sets the IPAddress of the cache client.void
setPort(int value)
Sets the port of the cache client.void
setProcessID(java.lang.String value)
Sets the process id of the cache client.
-
-
-
Method Detail
-
getProcessID
public final java.lang.String getProcessID()
Gets the process id of the cache client.- Returns:
- Gets the process id of the cache client.
-
setProcessID
public final void setProcessID(java.lang.String value)
Sets the process id of the cache client.- Parameters:
value
- The process id of the cache client.
-
getClientIP
public final java.lang.String getClientIP()
Gets the IPAddress of the cache client.- Returns:
- The IPAddress of the cache client.
-
setClientIP
public final void setClientIP(java.lang.String value)
Sets the IPAddress of the cache client.- Parameters:
value
- The IPAddress of the cache client.
-
getPort
public final int getPort()
Gets the port of the cache client.- Returns:
- The port the cache client.
-
setPort
public final void setPort(int value)
Sets the port of the cache client.- Parameters:
value
- The port of the cache client.
-
-