PHP 8.2.31
Preview: extserv.rb Size: 831 B
//proc/thread-self/root/opt/alt/ruby23/lib64/ruby/2.3.0/drb/extserv.rb

# frozen_string_literal: false
=begin
 external service
        Copyright (c) 2000,2002 Masatoshi SEKI
=end

require 'drb/drb'
require 'monitor'

module DRb
  class ExtServ
    include MonitorMixin
    include DRbUndumped

    def initialize(there, name, server=nil)
      super()
      @server = server || DRb::primary_server
      @name = name
      ro = DRbObject.new(nil, there)
      synchronize do
        @invoker = ro.regist(name, DRbObject.new(self, @server.uri))
      end
    end
    attr_reader :server

    def front
      DRbObject.new(nil, @server.uri)
    end

    def stop_service
      synchronize do
        @invoker.unregist(@name)
        server = @server
        @server = nil
        server.stop_service
        true
      end
    end

    def alive?
      @server ? @server.alive? : false
    end
  end
end

Directory Contents

Dirs: 0 × Files: 11

Name Size Perms Modified Actions
4.36 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download
56.28 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download
275 B lrw-r--r-- 2015-12-16 05:07:31
Edit Download
831 B lrw-r--r-- 2015-12-16 05:07:31
Edit Download
1.73 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download
3.00 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download
777 B lrw-r--r-- 2015-12-16 05:07:31
Edit Download
667 B lrw-r--r-- 2015-12-16 05:07:31
Edit Download
11.58 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download
2.05 KB lrw-r--r-- 2016-08-11 18:30:09
Edit Download
2.75 KB lrw-r--r-- 2015-12-16 05:07:31
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).