# IsCompleted(EventID)

> Returns true if the asynchronous operation completed.

## Definition

* **Type:** Method
* **Namespace:** [UnityEngine.LightTransport](/engine/6000.5/script-reference/unityengine/lighttransport.md)
* **Assembly:** UnityEngine.CoreModule

```csharp
public bool IsCompleted(EventID id)
```

### Parameters

**** (\[EventID]\(/engine/6000.5/script-reference/unityengine/lighttransport/eventid)): ID of the event to query.

### Returns

| Type                                                          | Description                                       |
| ------------------------------------------------------------- | ------------------------------------------------- |
| [bool](https://learn.microsoft.com/dotnet/api/system.boolean) | True if the asynchronous operation has completed. |

### Remarks

Operations always complete immediately when queued on the [ReferenceContext](/engine/6000.5/script-reference/unityengine/lighttransport/referencecontext.md). This method will always return true.
