register_subscription
Register a subscription to capture new events from the Unreal Engine event bus. Specify event type filters; the subscription ID enables polling and later removal.
Instructions
Tier 2 PR #43: create a server-side cursor + filter on the FUCMCPEventBus. Returns a subscription_id (FGuid string) usable with poll_subscription (drain matched events) and unsubscribe (release). The cursor starts at the bus's current next_seq -- subscribers see events fired AFTER subscription, not historical ones. PR #43 ships subscriptions WITHOUT TTL: they live until explicit unsubscribe.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| event_filter | No | Substring-match filters on event type names; OR-combined. Empty / omitted means no filter. |