> For a complete index of all SignalWire documentation pages, fetch https://signalwire.com/docs/llms.txt

# streaming$

> Observable indicating whether the call is being streamed.

```ts
get streaming$(): Observable<boolean>
```

Observable indicating whether the call is being streamed.

## streaming

```ts
get streaming(): boolean
```

Whether the call is currently being streamed.

## **Examples**

```ts
call.streaming$.subscribe((streaming) => {
  console.log('streaming:', streaming);
});
```