corda / net.corda.core.flows / MaybeSerializedSignedTransaction

MaybeSerializedSignedTransaction

class MaybeSerializedSignedTransaction : NamedByHash

In the words of Matt working code is more important then pretty code. This class that contains code that may be serialized. If it were always serialized then the local disk fetch would need to serialize then de-serialize which wastes time. However over the wire we get batch fetch items serialized. This is because we need to get the exact length of the objects to pack them into the 10MB max message size buffer. We do not want to serialize them multiple times so it's a lot more efficient to send the byte stream.

Constructors

<init>

In the words of Matt working code is more important then pretty code. This class that contains code that may be serialized. If it were always serialized then the local disk fetch would need to serialize then de-serialize which wastes time. However over the wire we get batch fetch items serialized. This is because we need to get the exact length of the objects to pack them into the 10MB max message size buffer. We do not want to serialize them multiple times so it's a lot more efficient to send the byte stream.

MaybeSerializedSignedTransaction(id: SecureHash, serialized: SerializedBytes<SignedTransaction>?, nonSerialised: SignedTransaction?)

Properties

id

val id: SecureHash

nonSerialised

val nonSerialised: SignedTransaction?

serialized

val serialized: SerializedBytes<SignedTransaction>?

Functions

get

fun get(): SignedTransaction?

isNull

fun isNull(): Boolean

payloadContentDescription

fun payloadContentDescription(): String

serializedByteCount

fun serializedByteCount(): Int