Epok Engine

EPOK RUNTIME

epok::collect_object_quarantine

Function · 1 overload

Function

Performs `collect object quarantine` as part of the actor tables module.

Belongs to
epok
Header
actor_tables.hpp
Overloads
1

Declaration

Declaration
inline void collect_object_quarantine()

Performs `collect object quarantine` as part of the actor tables module.

This overload takes no parameters.

Returns: Nothing (void).

Example

C++ example
#include "actor_tables.hpp"

epok::collect_object_quarantine();

Why use it

It provides direct, allocation-conscious access to the actor tables 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/actor_tables.hpp:158

Related members