Epok Engine

EPOK RUNTIME

epok::sequence_service

Function · 1 overload

Function

Performs `sequence service` as part of the sequence service module.

Belongs to
epok
Header
sequence_service.hpp
Overloads
1

Declaration

Declaration
inline void sequence_service(uint32_t elapsed_us)

Performs `sequence service` as part of the sequence service module.

ParameterTypeMeaning
elapsed_usuint32_tValue supplied for elapsed_us. Keep referenced or pointed-to data valid for the complete call.

Returns: Nothing (void).

Example

C++ example
#include "sequence_service.hpp"

// Assume these named values have been initialized with valid data:
// uint32_t elapsed_us

epok::sequence_service(elapsed_us);

Why use it

It provides direct, allocation-conscious access to the sequence service module. No exception-based error path is implied by the signature.

Trade-offs and warnings

Call it only in the lifecycle phase described by the module. Validate indices, capacities and object state before use.

Declared in runtime/sequence_service.hpp:283

Related members