> ## Documentation Index
> Fetch the complete documentation index at: https://docs.qu.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# UnmanagedSubscriber

An **UnmanagedSubscriber** is useful for events which do not require any additional management, such as `"debug"`
which only requires emit in synchronous event loop triggered calls.

## Implements

* [`Subscriber`](/sdk/content/interfaces/Subscriber)

## Constructors

### new UnmanagedSubscriber()

```ts theme={null}
new UnmanagedSubscriber(name): UnmanagedSubscriber
```

Create a new UnmanagedSubscriber with `name`.

#### Parameters

| Parameter | Type     | Description            |
| :-------- | :------- | :--------------------- |
| `name`    | `string` | The name of the event. |

#### Returns

[`UnmanagedSubscriber`](/sdk/content/classes/UnmanagedSubscriber)

#### Source

[providers/abstract-provider.ts:265](https://github.com/dominant-strategies/quais.js/blob/c1c12d43f9d34c6baad2b0542bd6d0acd6fefcbf/src/providers/abstract-provider.ts#L265)

## Properties

| Property | Type     | Description            |
| :------- | :------- | :--------------------- |
| `name`   | `string` | The name of the event. |
