Module: Quebert::AsyncSender::Class

Defined in:
lib/quebert/async_sender/class.rb

Overview

Extend a class with both the object and instance async_send

Class Method Summary collapse

Class Method Details

.included(base) ⇒ Object



5
6
7
8
# File 'lib/quebert/async_sender/class.rb', line 5

def self.included(base)
  base.send(:include, AsyncSender::Object)
  base.send(:include, AsyncSender::Instance)
end