Class ServiceSingleNodeDeploymentResultBatch
- java.lang.Object
-
- org.apache.ignite.internal.processors.service.ServiceSingleNodeDeploymentResultBatch
-
- All Implemented Interfaces:
Serializable,Message
public class ServiceSingleNodeDeploymentResultBatch extends Object implements Message
Batch of service single node deployment result. Contains collection ofServiceSingleNodeDeploymentResultmapped services ids.- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from interface org.apache.ignite.plugin.extensions.communication.Message
DIRECT_TYPE_SIZE
-
-
Constructor Summary
Constructors Constructor Description ServiceSingleNodeDeploymentResultBatch()Empty constructor for marshalling purposes.ServiceSingleNodeDeploymentResultBatch(@NotNull ServiceDeploymentProcessId depId, @NotNull Map<IgniteUuid,ServiceSingleNodeDeploymentResult> results)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ServiceDeploymentProcessIddeploymentId()shortdirectType()Gets message type.bytefieldsCount()Gets fields count.voidonAckReceived()Method called when ack message received.booleanreadFrom(ByteBuffer buf, MessageReader reader)Reads this message from provided byte buffer.Map<IgniteUuid,ServiceSingleNodeDeploymentResult>results()StringtoString()booleanwriteTo(ByteBuffer buf, MessageWriter writer)Writes this message to provided byte buffer.
-
-
-
Constructor Detail
-
ServiceSingleNodeDeploymentResultBatch
public ServiceSingleNodeDeploymentResultBatch()
Empty constructor for marshalling purposes.
-
ServiceSingleNodeDeploymentResultBatch
public ServiceSingleNodeDeploymentResultBatch(@NotNull @NotNull ServiceDeploymentProcessId depId, @NotNull @NotNull Map<IgniteUuid,ServiceSingleNodeDeploymentResult> results)- Parameters:
depId- Deployment process id.results- Services deployments results.
-
-
Method Detail
-
results
public Map<IgniteUuid,ServiceSingleNodeDeploymentResult> results()
- Returns:
- Services deployments results.
-
deploymentId
public ServiceDeploymentProcessId deploymentId()
- Returns:
- Deployment process id.
-
writeTo
public boolean writeTo(ByteBuffer buf, MessageWriter writer)
Writes this message to provided byte buffer.
-
readFrom
public boolean readFrom(ByteBuffer buf, MessageReader reader)
Reads this message from provided byte buffer.
-
directType
public short directType()
Gets message type.- Specified by:
directTypein interfaceMessage- Returns:
- Message type.
-
fieldsCount
public byte fieldsCount()
Gets fields count.- Specified by:
fieldsCountin interfaceMessage- Returns:
- Fields count.
-
onAckReceived
public void onAckReceived()
Method called when ack message received.- Specified by:
onAckReceivedin interfaceMessage
-
-