Sha256: 85e7dcbf8a0ba910f6f3a833dee4c3c5fa3c247c8c206df12270d0bd675b40c6

Contents?: true

Size: 1.49 KB

Versions: 8

Compression:

Stored size: 1.49 KB

Contents

#--
# Copyright (C)2007-10 Tony Arcieri
# You can redistribute this under the terms of the Ruby license
# See file LICENSE for details
#++

module Coolio
  module Meta
    # Use an alternate watcher with the attach/detach/enable/disable methods
    # if it is presently assigned.  This is useful if you are waiting for
    # an event to occur before the current watcher can be used in earnest,
    # such as making an outgoing TCP connection.
    def watcher_delegate(proxy_var)
      %w{attach attached? detach enable disable}.each do |method|
        module_eval <<-EOD
          def #{method}(*args)
            if defined? #{proxy_var} and #{proxy_var}
              #{proxy_var}.#{method}(*args)
              return self
            end

            super
          end
        EOD
      end
    end

    # Define callbacks whose behavior can be changed on-the-fly per instance.
    # This is done by giving a block to the callback method, which is captured
    # as a proc and stored for later.  If the method is called without a block,
    # the stored block is executed if present, otherwise it's a noop.
    def event_callback(*methods)
      methods.each do |method|
        module_eval <<-EOD
          def #{method}(*args, &block)
            if block
              @#{method}_callback = block
              return
            end

            if defined? @#{method}_callback and @#{method}_callback
              @#{method}_callback.call(*args)
            end
          end
        EOD
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
cool.io-1.4.3 lib/cool.io/meta.rb
cool.io-1.4.2 lib/cool.io/meta.rb
cool.io-1.4.1-x86-mingw32 lib/cool.io/meta.rb
cool.io-1.4.1-x64-mingw32 lib/cool.io/meta.rb
cool.io-1.4.1 lib/cool.io/meta.rb
cool.io-1.4.0 lib/cool.io/meta.rb
cool.io-1.3.1 lib/cool.io/meta.rb
cool.io-1.3.0 lib/cool.io/meta.rb