Wait for event
Wait until the Inngest server receives a specific event.
If an event is received before the timeout then the event is returned. If the timeout is reached then None is returned.
Arguments
- Name
- step_id
- Type
- str
- Required
- required
- Description
- Step ID. Should be unique within the function. 
 
- Name
- event
- Type
- str
- Required
- required
- Description
- Name of the event to wait for. 
 
- Name
- if_exp
- Type
- str | None
- Required
- optional
- Description
- Only match events that match this CEL expression. For example, - "event.data.height == async.data.height"will only match incoming events whose- data.heightmatches the- data.heightvalue for the trigger event.
 
- Name
- timeout
- Type
- int | datetime.timedelta
- Required
- required
- Description
- In milliseconds. 
 
Examples
@inngest_client.create_function(
    fn_id="my_function",
    trigger=inngest.TriggerEvent(event="app/my_function"),
)
async def fn(
    ctx: inngest.Context,
    step: inngest.Step,
) -> None:
    res = await step.wait_for_event(
        "wait",
        event="app/wait_for_event.fulfill",
        timeout=datetime.timedelta(seconds=2),
    )