PHP 8.2.31
Preview: extserv.rb Size: 836 B
//proc/thread-self/root/opt/alt/ruby31/share/ruby/drb/extserv.rb

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

require_relative '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: 13

Name Size Perms Modified Actions
4.61 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
57.49 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
275 B lrw-r--r-- 2025-04-28 17:36:08
Edit Download
836 B lrw-r--r-- 2025-04-28 17:36:08
Edit Download
1.75 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
3.00 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
777 B lrw-r--r-- 2025-04-28 17:36:08
Edit Download
671 B lrw-r--r-- 2025-04-28 17:36:08
Edit Download
11.52 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
2.16 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
2.78 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download
35 B lrw-r--r-- 2025-04-28 17:36:08
Edit Download
1.12 KB lrw-r--r-- 2025-04-28 17:36:08
Edit Download

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