From 7363ad43f598d6833d3c773f56e58a9f5d6e2e1f Mon Sep 17 00:00:00 2001 From: Matthew Draper Date: Sun, 24 Jan 2016 19:00:06 +1030 Subject: Allow subscription adapters to be shut down --- actioncable/lib/action_cable/subscription_adapter/base.rb | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'actioncable/lib/action_cable/subscription_adapter/base.rb') diff --git a/actioncable/lib/action_cable/subscription_adapter/base.rb b/actioncable/lib/action_cable/subscription_adapter/base.rb index 11910803e8..796db5ffa3 100644 --- a/actioncable/lib/action_cable/subscription_adapter/base.rb +++ b/actioncable/lib/action_cable/subscription_adapter/base.rb @@ -19,6 +19,10 @@ module ActionCable def unsubscribe(channel, message_callback) raise NotImplementedError end + + def shutdown + raise NotImplementedError + end end end end -- cgit v1.2.3