HEX
Server: Apache
System: Windows NT MAGNETO-ARM 10.0 build 22000 (Windows 10) AMD64
User: Michel (0)
PHP: 7.4.7
Disabled: NONE
Upload Files
File: C:/Ruby27-x64/share/doc/ruby/html/DRb/GWIdConv.html
<!DOCTYPE html>

<html>
<head>
<meta charset="UTF-8">

<title>class DRb::GWIdConv - RDoc Documentation</title>

<script type="text/javascript">
  var rdoc_rel_prefix = "../";
  var index_rel_prefix = "../";
</script>

<script src="../js/navigation.js" defer></script>
<script src="../js/search.js" defer></script>
<script src="../js/search_index.js" defer></script>
<script src="../js/searcher.js" defer></script>
<script src="../js/darkfish.js" defer></script>

<link href="../css/fonts.css" rel="stylesheet">
<link href="../css/rdoc.css" rel="stylesheet">




<body id="top" role="document" class="class">
<nav role="navigation">
  <div id="project-navigation">
    <div id="home-section" role="region" title="Quick navigation" class="nav-section">
  <h2>
    <a href="../index.html" rel="home">Home</a>
  </h2>

  <div id="table-of-contents-navigation">
    <a href="../table_of_contents.html#pages">Pages</a>
    <a href="../table_of_contents.html#classes">Classes</a>
    <a href="../table_of_contents.html#methods">Methods</a>
  </div>
</div>

    <div id="search-section" role="search" class="project-section initially-hidden">
  <form action="#" method="get" accept-charset="utf-8">
    <div id="search-field-wrapper">
      <input id="search-field" role="combobox" aria-label="Search"
             aria-autocomplete="list" aria-controls="search-results"
             type="text" name="search" placeholder="Search" spellcheck="false"
             title="Type to search, Up and Down to navigate, Enter to load">
    </div>

    <ul id="search-results" aria-label="Search Results"
        aria-busy="false" aria-expanded="false"
        aria-atomic="false" class="initially-hidden"></ul>
  </form>
</div>

  </div>

  

  <div id="class-metadata">
    
    <div id="parent-class-section" class="nav-section">
  <h3>Parent</h3>

  
  <p class="link"><a href="DRbIdConv.html">DRb::DRbIdConv</a>
  
</div>

    
    
    
  </div>
</nav>

<main role="main" aria-labelledby="class-DRb::GWIdConv">
  <h1 id="class-DRb::GWIdConv" class="class">
    class DRb::GWIdConv
  </h1>

  <section class="description">
    
<p>Gateway id conversion forms a gateway between different <a href="../DRb.html"><code>DRb</code></a> protocols or networks.</p>

<p>The gateway needs to install this id conversion and create servers for each of the protocols or networks it will be a gateway between.  It then needs to create a server that attaches to each of these networks.  For example:</p>

<pre class="ruby"><span class="ruby-identifier">require</span> <span class="ruby-string">&#39;drb/drb&#39;</span>
<span class="ruby-identifier">require</span> <span class="ruby-string">&#39;drb/unix&#39;</span>
<span class="ruby-identifier">require</span> <span class="ruby-string">&#39;drb/gw&#39;</span>

<span class="ruby-constant">DRb</span>.<span class="ruby-identifier">install_id_conv</span> <span class="ruby-constant">DRb</span><span class="ruby-operator">::</span><span class="ruby-constant">GWIdConv</span>.<span class="ruby-identifier">new</span>
<span class="ruby-identifier">gw</span> = <span class="ruby-constant">DRb</span><span class="ruby-operator">::</span><span class="ruby-constant">GW</span>.<span class="ruby-identifier">new</span>
<span class="ruby-identifier">s1</span> = <span class="ruby-constant">DRb</span><span class="ruby-operator">::</span><span class="ruby-constant">DRbServer</span>.<span class="ruby-identifier">new</span> <span class="ruby-string">&#39;drbunix:/path/to/gateway&#39;</span>, <span class="ruby-identifier">gw</span>
<span class="ruby-identifier">s2</span> = <span class="ruby-constant">DRb</span><span class="ruby-operator">::</span><span class="ruby-constant">DRbServer</span>.<span class="ruby-identifier">new</span> <span class="ruby-string">&#39;druby://example:10000&#39;</span>, <span class="ruby-identifier">gw</span>

<span class="ruby-identifier">s1</span>.<span class="ruby-identifier">thread</span>.<span class="ruby-identifier">join</span>
<span class="ruby-identifier">s2</span>.<span class="ruby-identifier">thread</span>.<span class="ruby-identifier">join</span>
</pre>

<p>Each client must register services with the gateway, for example:</p>

<pre class="ruby"><span class="ruby-constant">DRb</span>.<span class="ruby-identifier">start_service</span> <span class="ruby-string">&#39;drbunix:&#39;</span>, <span class="ruby-keyword">nil</span> <span class="ruby-comment"># an anonymous server</span>
<span class="ruby-identifier">gw</span> = <span class="ruby-constant">DRbObject</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">nil</span>, <span class="ruby-string">&#39;drbunix:/path/to/gateway&#39;</span>
<span class="ruby-identifier">gw</span>[<span class="ruby-value">:unix</span>] = <span class="ruby-identifier">some_service</span>
<span class="ruby-constant">DRb</span>.<span class="ruby-identifier">thread</span>.<span class="ruby-identifier">join</span>
</pre>

  </section>

  
  <section id="5Buntitled-5D" class="documentation-section">
    

    

    

    

    
  </section>

</main>


<footer id="validator-badges" role="contentinfo">
  <p><a href="https://validator.w3.org/check/referer">Validate</a>
  <p>Generated by <a href="https://ruby.github.io/rdoc/">RDoc</a> 6.2.1.1.
  <p>Based on <a href="http://deveiate.org/projects/Darkfish-RDoc/">Darkfish</a> by <a href="http://deveiate.org">Michael Granger</a>.
</footer>