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

# locked$

> Observable indicating whether the call room is locked.

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

Observable indicating whether the call room is locked.

## locked

```ts
get locked(): boolean
```

Whether the call room is locked.

## **Examples**

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