Class ServiceClusterDeploymentResult
- java.lang.Object
-
- org.apache.ignite.internal.processors.service.ServiceClusterDeploymentResult
-
- All Implemented Interfaces:
Serializable
public class ServiceClusterDeploymentResult extends Object implements Serializable
Service cluster deployment result. Contains coint of deployed service and deployment errors across the cluster mapped to nodes ids.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ServiceClusterDeploymentResult(@NotNull IgniteUuid srvcId, @NotNull Map<UUID,ServiceSingleNodeDeploymentResult> results)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Map<UUID,ServiceSingleNodeDeploymentResult>results()IgniteUuidserviceId()StringtoString()
-
-
-
Constructor Detail
-
ServiceClusterDeploymentResult
public ServiceClusterDeploymentResult(@NotNull @NotNull IgniteUuid srvcId, @NotNull @NotNull Map<UUID,ServiceSingleNodeDeploymentResult> results)- Parameters:
srvcId- Service id.results- Deployments results.
-
-
Method Detail
-
serviceId
public IgniteUuid serviceId()
- Returns:
- Service id.
-
results
public Map<UUID,ServiceSingleNodeDeploymentResult> results()
- Returns:
- Per node deployments results.
-
-