Package org.apache.ignite.client
Interface ClientServiceDescriptor
- 
 public interface ClientServiceDescriptorDescriptor ofService.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description @Nullable StringcacheName()Gets cache name used for key-to-node affinity calculation.intmaxPerNodeCount()Gets maximum allowed number of deployed services on each node,0for unlimited.Stringname()Gets service name.UUIDoriginNodeId()Gets ID of grid node that initiated the service deployment.PlatformTypeplatformType()Gets platform type.StringserviceClass()Gets service class.inttotalCount()Gets maximum allowed total number of deployed services in the grid,0for unlimited.
 
- 
- 
- 
Method Detail- 
nameString name() Gets service name.- Returns:
- Service name.
 
 - 
serviceClassString serviceClass() Gets service class.- Returns:
- Service class.
 
 - 
totalCountint totalCount() Gets maximum allowed total number of deployed services in the grid,0for unlimited.- Returns:
- Maximum allowed total number of deployed services in the grid, 0for unlimited.
 
 - 
maxPerNodeCountint maxPerNodeCount() Gets maximum allowed number of deployed services on each node,0for unlimited.- Returns:
- Maximum allowed total number of deployed services on each node, 0for unlimited.
 
 - 
cacheName@Nullable @Nullable String cacheName() Gets cache name used for key-to-node affinity calculation. This parameter is optional and is set only when key-affinity service was deployed.- Returns:
- Cache name, possibly null.
 
 - 
originNodeIdUUID originNodeId() Gets ID of grid node that initiated the service deployment.- Returns:
- ID of grid node that initiated the service deployment.
 
 - 
platformTypePlatformType platformType() Gets platform type.- Returns:
- Platform type.
 
 
- 
 
-