mirror of
https://github.com/django/daphne.git
synced 2025-07-11 08:22:17 +03:00
Remove old code from Channel/Group
This commit is contained in:
parent
a0dff726b2
commit
4b82d989ca
|
@ -36,15 +36,6 @@ class Channel(object):
|
||||||
raise ValueError("You can only send dicts as content on channels.")
|
raise ValueError("You can only send dicts as content on channels.")
|
||||||
self.channel_layer.send(self.name, content)
|
self.channel_layer.send(self.name, content)
|
||||||
|
|
||||||
def as_view(self):
|
|
||||||
"""
|
|
||||||
Returns a view version of this channel - one that takes
|
|
||||||
the request passed in and dispatches it to our channel,
|
|
||||||
serialized.
|
|
||||||
"""
|
|
||||||
from channels.adapters import view_producer
|
|
||||||
return view_producer(self.name)
|
|
||||||
|
|
||||||
def __str__(self):
|
def __str__(self):
|
||||||
return self.name
|
return self.name
|
||||||
|
|
||||||
|
@ -74,9 +65,6 @@ class Group(object):
|
||||||
channel = channel.name
|
channel = channel.name
|
||||||
self.channel_layer.group_discard(self.name, channel)
|
self.channel_layer.group_discard(self.name, channel)
|
||||||
|
|
||||||
def channels(self):
|
|
||||||
return self.channel_layer.group_channels(self.name)
|
|
||||||
|
|
||||||
def send(self, content):
|
def send(self, content):
|
||||||
if not isinstance(content, dict):
|
if not isinstance(content, dict):
|
||||||
raise ValueError("You can only send dicts as content on channels.")
|
raise ValueError("You can only send dicts as content on channels.")
|
||||||
|
|
Loading…
Reference in New Issue
Block a user