Cinder.Table.Refresh (Cinder v0.9.0)

View Source

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.

Summary

Functions

refresh_table(socket, table_id)

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

See Cinder.Refresh.refresh_table/2.

refresh_tables(socket, table_ids)

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

See Cinder.Refresh.refresh_tables/2.