# File lib/adaptation/mom.rb, line 15
      def subscribe drb_uri
        unless get_subscribers.include?(drb_uri)
          add_subscriber drb_uri
          puts "Added new subscriber: #{drb_uri}"
        end

        oapdaemon = DRbObject.new(nil, drb_uri)
        oapdaemon.subscription_result(true)
      end