# `Cinder.Table.Refresh`
[🔗](https://github.com/sevenseacat/cinder/blob/v0.12.1/lib/cinder/table/refresh.ex#L1)

Helper functions for refreshing Cinder collection data.

**DEPRECATED**: This module has been moved to `Cinder.Refresh`.
Please update your code to use `Cinder.Refresh` instead.

## Migration

    # OLD
    import Cinder.Table.Refresh
    refresh_table(socket, "my-table")

    # NEW
    import Cinder.Refresh
    refresh_table(socket, "my-table")

    # Or use top-level delegates
    Cinder.refresh_table(socket, "my-table")

This module will be removed in version 1.0.

# `refresh_table`

> This function is deprecated. Use Cinder.Refresh.refresh_table/2 instead.

# `refresh_tables`

> This function is deprecated. Use Cinder.Refresh.refresh_tables/2 instead.

---

*Consult [api-reference.md](api-reference.md) for complete listing*
