method

close

v1_9_2_180 - Show latest stable - Class: DRb::DRbUNIXSocket
close()
public

No documentation available.

# File lib/drb/unix.rb, line 89
    def close
      return unless @socket
      path = @socket.path if @server_mode
      @socket.close
      File.unlink(path) if @server_mode
      @socket = nil
    end