Enum hdk::prelude::ChainTopOrdering[][src]

pub enum ChainTopOrdering {
    Relaxed,
    Strict,
}

Variants

Relaxed

Relaxed chain top ordering REWRITES HEADERS INLINE during a flush of the source chain to sit on top of the current chain top. The “as at” of the zome call initial state is completely ignored. This may be significantly more efficient if you are CERTAIN that none of your zome or validation logic is order dependent. Examples include simple chat messages or tweets. Note however that even chat messages and tweets may have subtle order dependencies, such as if a cap grant was written or revoked that would have invalidated the zome call that wrote data after the revocation, etc. The efficiency of relaxed ordering comes from simply rehashing and signing headers on the new chain top during flush, avoiding the overhead of the client, websockets, zome call instance, wasm execution, validation, etc. that would result from handling a HeadMoved error via an external driver.

Strict

The default Strict ordering is the default for a very good reason. Writes normally compare the chain head from the start of a zome call against the time a write transaction is flushed from the source chain. This is REQUIRED for data integrity if any zome or validation logic depends on the ordering of data in a chain. This order dependence could be obvious such as an explicit reference or dependency. It could be very subtle such as checking for the existence or absence of some data. If you are unsure whether your data is order dependent you should err on the side of caution and handle HeadMoved errors on the client of the zome call and restart the zome call from the start.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more