<div class='sourceset sourceset-common'>Common</div>

```kotlin
inner class Entry(
        val id: Int,
        val throttleMillis: Long,
        val debounceMillis: Long,
        val node: DelegatableNode,
        val callback: (RelativeLayoutBounds) -> Unit,
    ) : RegistrationHandle
```

Entry for a throttled callback for [RelativeLayoutBounds](/jetpack-compose/androidx.compose.ui/ui/classes/RelativeLayoutBounds) associated to the given [node](#node).

Supports a linked-list structure for multiple callbacks on the same [node](#node) through [next](#next).

## Properties

<div class='sourceset sourceset-common'>Common</div>

```kotlin
var next: Entry?
```

<div class='sourceset sourceset-common'>Common</div>

```kotlin
var topLeft: Long
```

<div class='sourceset sourceset-common'>Common</div>

```kotlin
var bottomRight: Long
```

<div class='sourceset sourceset-common'>Common</div>

```kotlin
var lastInvokeMillis: Long
```

<div class='sourceset sourceset-common'>Common</div>

```kotlin
var lastUninvokedFireMillis: Long
```

## Functions

<h2 id="fire-topleft-bottomright-windowoffset-screenoffset-viewtowindowmatrix">fire</h2>

```kotlin
fun fire(
            topLeft: Long,
            bottomRight: Long,
            windowOffset: IntOffset,
            screenOffset: IntOffset,
            viewToWindowMatrix: Matrix?,
        )
```