Class BlockTransactionReceipt
java.lang.Object
org.spongepowered.api.block.transaction.BlockTransactionReceipt
- All Implemented Interfaces:
DataSerializable
-
Constructor Summary
ConstructorDescriptionBlockTransactionReceipt
(BlockSnapshot originalBlock, BlockSnapshot finalBlock, Operation operation) -
Method Summary
Modifier and TypeMethodDescriptionint
Gets the content version of thisDataSerializable
.Serializes this object into a comprehensibleDataContainer
.
-
Constructor Details
-
BlockTransactionReceipt
public BlockTransactionReceipt(BlockSnapshot originalBlock, BlockSnapshot finalBlock, Operation operation)
-
-
Method Details
-
originalBlock
-
finalBlock
-
operation
-
contentVersion
public int contentVersion()Description copied from interface:DataSerializable
Gets the content version of thisDataSerializable
. The version may differ between instances of plugins and implementations such that theDataView
fromDataSerializable.toContainer()
may include different information, or remove other information as they are no longer deemed necessary. The version goes hand in hand withDataContentUpdater
as it is required when there exists anyDataView
of thisDataSerializable
with an "older" version.- Specified by:
contentVersion
in interfaceDataSerializable
- Returns:
- The version of the content being serialized
-
toContainer
Description copied from interface:DataSerializable
Serializes this object into a comprehensibleDataContainer
.- Specified by:
toContainer
in interfaceDataSerializable
- Returns:
- A newly created DataContainer
-