Features
- Support custom channel registries (to perform channel class lookups).
For example:
# DummyRegistry which always returns a predefined channel class
class DummyRegistry
def lookup(channel_id)
DummyChannel
end
end
LiteCable.channel_registry = DummyRegistry.new
Changes
- Ruby 2.7+ is required.