File: method.rb

package info (click to toggle)
ruby-celluloid-essentials 0.20.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 240 kB
  • sloc: ruby: 1,084; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 746 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module Celluloid
  module Internals
    # Method handles that route through an actor proxy
    class Method
      def initialize(proxy, name)
        fail NoMethodError, "undefined method `#{name}'" unless proxy.respond_to? name

        @proxy, @name = proxy, name
        @klass = @proxy.class
      end

      def arity
        @proxy.method_missing(:method, @name).arity
      end

      def name
        @proxy.method_missing(:method, @name).name
      end

      def parameters
        @proxy.method_missing(:method, @name).parameters
      end

      def call(*args, &block)
        @proxy.__send__(@name, *args, &block)
      end

      def inspect
        "#<Celluloid::Internals::Method #{@klass}##{@name}>"
      end
    end
  end
end