Create one typed Blueprint event and see it travel from a producer to a listener.
Install and enable.
Copy the plugin to <Project>/Plugins/RekallGlobalEvents, or to <UE_5.8>/Engine/Plugins/Marketplace/RekallGlobalEvents for every project using that engine. Enable Rekall Global Events and restart. Blueprint-only projects need no Visual Studio generation or module dependency.
Create the payload.
In the Content Browser, choose Add > Blueprint > Structure. Name it ST_InventoryItemAdded and add the fields your listeners need.
Create the definition.
Choose Add > Data > Data Asset, select Rekall Event Definition, give it the tag Event.Inventory.ItemAdded, and select your Blueprint Struct as its payload.
Build a catalog.
Repeat Add > Data > Data Asset, select Rekall Event Catalog, add the definition, then assign it under Project Settings > Game > Rekall Events.
Publish and listen.
Place Publish Inventory Item Added and Bind Inventory Item Added. Their payload pins are the exact ST_InventoryItemAdded type.
02
Visual authoring
Blueprint workflow
Definition-backed K2 nodes give designers a familiar node workflow without sacrificing the event’s exact payload contract.
Publish
Select the definition on Publish Rekall Event, or choose the generated event-specific action. Set the exact payload fields and inspect the structured result for status, counts, and correlation.
Bind
Bind Rekall Event returns a subscription handle. Store it when you need explicit unbinding; owner destruction also removes the listener safely.
Wait
Wait for Rekall Event suspends execution until delivery, timeout, cancellation, or context loss and returns the typed payload plus context.
Retain
Query retained data directly or replay it through an existing handle. Rekall never coerces an incompatible struct into the expected payload.
The scoped subscription is move-only and removes its handle on reset or destruction. UObject owners are weak. Off-thread ordinary API calls reject without touching UObject state; certified POD events can use the dedicated bounded worker handoff.
04
Core runtime
Routing and scheduling
Concern
Choices
Use it for
Scope
World · Game Instance · Local Player · Directed · Audience
Choose the eligible in-process listener set
Delivery
Immediate · Next Tick · Tick Phase
Inline reactions or deterministic deferred work
Tick phase
Pre Physics · Post Physics · End Frame
Ordering against engine simulation
Recipient selection
All · Target owner · Local player · Tag query
Narrow Directed, Local Player, or Audience delivery
Priority
Signed integer
Stable higher-priority-first scheduling
Event definitions own defaults. Publication options override scope, delivery mode, tick phase, or priority only when their corresponding override flag is set. Selectors and parent correlation remain publication-owned.
05
Stateful signals
Retention and replay
None
Deliver and forget. Use for transient actions such as effects, audio cues, and momentary reactions.
Latest
Keep the newest accepted envelope for a scope key. New systems can query the current state explicitly.
Latest per audience
Keep one value per audience identity or query key for segmented state and late-join behavior.
06
Transport
Secure networking
The Network module transports approved Core events. It never turns a client-supplied tag into trusted authority.
01
Standalone
Bypasses RPC transport, validates the live definition and payload, then publishes through the local World router.
02
Listen Server
Uses the same coordinator and owned endpoint rules while the host also has a local player.
03
Dedicated Server
Runs authoritative definition, policy, direction, schema, rate, byte, recipient, and late-join decisions without a local player.
Admission sequence
Resolve the registered player-owned endpoint.
Resolve the live Core definition on authority.
Validate route direction and Network policy.
Validate payload schema and configured readiness.
Consume rate and byte budgets.
Publish locally or fan out to Owner, Audience, or All.
07
Orchestration
Flow runtime
Flow Assets compile authored graphs into immutable plans. Invalid types, missing extensions, unreachable nodes, unbounded cycles, and authority mismatches fail validation before runtime.
Control
Branch, Gate, bounded Repeat, Subflow, Parallel, Race, End, and Cancel.
Time & events
Delay, Wait with timeout, Publish, and event-driven resume.
State & extension
Typed variables, Set Variable, registered Actions, registered Conditions, and weak extension owners.
Project Settings > Game > Rekall Flow caps active instances, runtime bytes, World steps per frame, and terminal history. Each instance cleans subscriptions, timers, child flows, and extension handles on every terminal path.
08
Observe
Insights and tracing
Register an event trace sink or enable the RekallEvents Unreal Trace channel. The optional Insights module merges Core stages, network hops and authorization outcomes, and Flow transitions into a bounded timeline.
Attempt sequence follows one logical publication across worker handoff and router stages.
Delivery sequence is router-local and preserves dispatch ordering.
Correlation and parent correlation connect nested publications.
Payload capture requires definition permission, Full policy, sampling, and consumer interest.
Payload text is bounded and sanitized; raw reflected values are never retained by the trace record.
09
Ship
Packaging
The installed customer package contains exactly five customer modules:
Core does not depend on Network, Flow, Insights, Slate, BlueprintGraph, KismetCompiler, or UnrealEd. Network and Flow depend one-way on Core. Editor and Insights are available for authoring and diagnostics, but they do not enter packaged Game, Client, or Server runtime receipts. Tests, QA tags, and docs-test modules are not delivered.
10
Troubleshoot
Support checklist
Confirm the definition asset is saved and belongs to the configured catalog.
Confirm the payload is the exact struct declared by the definition.
Inspect the structured result’s status and diagnostic code.
Check the event’s effective scope, delivery defaults, selectors, and authority.
Enable Rekall Insights or the trace channel for correlation-level evidence.
For packaged builds, confirm Core plus any intentionally used Network/Flow modules are enabled.
Rekall Global Events 1.0.0 has passed clean-project qualification on UE 5.8 and Win64. Legal Publisher: Rekall Software Solutions / Marius Myburg. Final Marketplace support URLs, license selection, and account verification are completed during submission.