# EventStreamHandle

> **Class** in `langgraph_sdk`

📖 [View in docs](https://reference.langchain.com/python/langgraph-sdk/stream/transport/base/EventStreamHandle)

Handle for one async filtered event stream.

## Signature

```python
EventStreamHandle(
    self,
    events: AsyncIterator[Event],
    ready: asyncio.Future[None],
    done: asyncio.Future[BaseException | None],
    close: Callable[[], Awaitable[None]],
)
```

## Constructors

```python
__init__(
    self,
    events: AsyncIterator[Event],
    ready: asyncio.Future[None],
    done: asyncio.Future[BaseException | None],
    close: Callable[[], Awaitable[None]],
) -> None
```

| Name | Type |
|------|------|
| `events` | `AsyncIterator[Event]` |
| `ready` | `asyncio.Future[None]` |
| `done` | `asyncio.Future[BaseException \| None]` |
| `close` | `Callable[[], Awaitable[None]]` |


## Properties

- `events`
- `ready`
- `done`
- `close`

---

[View source on GitHub](https://github.com/langchain-ai/langgraph/blob/97320843fe78b93bd5290ce366841ff9850bf379/libs/sdk-py/langgraph_sdk/stream/transport/base.py#L14)