Class used for encapsulating handlers to prevent them from overwriting instance variables in {Bot}
@api private
@return [Bot]
# File lib/cinch/callback.rb, line 11 def initialize(bot) @bot = bot end
(see Cinch::Bot#synchronize)
# File lib/cinch/callback.rb, line 16 def synchronize(*args, &block) @bot.synchronize(*args, &block) end