module Quebert::AsyncSender::Class

Extend a class with both the object and instance async_send

Public Class Methods

included(base) click to toggle source
# File lib/quebert/async_sender/class.rb, line 5
def self.included(base)
  base.send(:include, AsyncSender::Object)
  base.send(:include, AsyncSender::Instance)
end