marilyn-rpc 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/benchmark/client.rb +42 -14
- data/doc/MarilynRPC.html +108 -0
- data/doc/MarilynRPC/CallRequestMail.html +578 -0
- data/doc/MarilynRPC/CallResponseMail.html +418 -0
- data/doc/MarilynRPC/Envelope.html +705 -0
- data/doc/MarilynRPC/ExceptionMail.html +338 -0
- data/doc/MarilynRPC/Gentleman.html +658 -0
- data/doc/MarilynRPC/MailFactory.html +284 -0
- data/doc/MarilynRPC/MailHelper.html +489 -0
- data/doc/MarilynRPC/NativeClient.html +579 -0
- data/doc/MarilynRPC/NativeClientProxy.html +303 -0
- data/doc/MarilynRPC/Server.html +406 -0
- data/doc/MarilynRPC/Service.html +599 -0
- data/doc/MarilynRPC/ServiceCache.html +481 -0
- data/doc/_index.html +219 -0
- data/doc/class_list.html +36 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +53 -0
- data/doc/css/style.css +318 -0
- data/doc/file.README.html +154 -0
- data/doc/file_list.html +38 -0
- data/doc/frames.html +13 -0
- data/doc/index.html +154 -0
- data/doc/js/app.js +203 -0
- data/doc/js/full_list.js +149 -0
- data/doc/js/jquery.js +16 -0
- data/doc/method_list.html +467 -0
- data/doc/top-level-namespace.html +88 -0
- data/lib/marilyn-rpc/client.rb +20 -21
- data/lib/marilyn-rpc/envelope.rb +27 -10
- data/lib/marilyn-rpc/gentleman.rb +8 -1
- data/lib/marilyn-rpc/mails.rb +40 -55
- data/lib/marilyn-rpc/server.rb +4 -11
- data/lib/marilyn-rpc/service.rb +1 -1
- data/lib/marilyn-rpc/service_cache.rb +7 -4
- data/lib/marilyn-rpc/version.rb +1 -1
- data/marilyn-rpc-0.0.2.gem +0 -0
- data/spec/envelope_spec.rb +18 -9
- data/spec/gentleman_spec.rb +14 -3
- data/spec/mails_spec.rb +2 -1
- data/spec/server_spec.rb +4 -4
- data/spec/service_cache_spec.rb +8 -0
- data/spec/spec_helper.rb +9 -2
- metadata +30 -22
data/benchmark/client.rb
CHANGED
@@ -5,22 +5,50 @@ TestService1 = client1.for(:test)
|
|
5
5
|
client2 = MarilynRPC::NativeClient.connect_unix("tmp.socket")
|
6
6
|
TestService2 = client2.for(:test)
|
7
7
|
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
8
|
+
if ARGV.size > 0
|
9
|
+
require "benchmark"
|
10
|
+
n = 5000
|
11
|
+
|
12
|
+
Benchmark.bm(10) do |b|
|
13
|
+
b.report("tcp add") do
|
14
|
+
n.times { TestService1.add(1, 2) }
|
15
|
+
end
|
16
|
+
b.report("tcp time") do
|
17
|
+
n.times { TestService1.time.to_f }
|
18
|
+
end
|
19
|
+
b.report("unix add") do
|
20
|
+
n.times { TestService2.add(1, 2) }
|
21
|
+
end
|
22
|
+
b.report("unix time") do
|
23
|
+
n.times { TestService2.time.to_f }
|
24
|
+
end
|
13
25
|
end
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
26
|
+
else
|
27
|
+
require "rubygems"
|
28
|
+
require "ruby-prof"
|
29
|
+
require "benchmark"
|
30
|
+
n = 500
|
31
|
+
|
32
|
+
result = RubyProf.profile do
|
33
|
+
Benchmark.bm(10) do |b|
|
34
|
+
b.report("tcp add") do
|
35
|
+
n.times { TestService1.add(1, 2) }
|
36
|
+
end
|
37
|
+
b.report("tcp time") do
|
38
|
+
n.times { TestService1.time.to_f }
|
39
|
+
end
|
40
|
+
b.report("unix add") do
|
41
|
+
n.times { TestService2.add(1, 2) }
|
42
|
+
end
|
43
|
+
b.report("unix time") do
|
44
|
+
n.times { TestService2.time.to_f }
|
45
|
+
end
|
46
|
+
end
|
22
47
|
end
|
23
|
-
end
|
24
48
|
|
49
|
+
# Print a graph profile to text
|
50
|
+
printer = RubyProf::GraphHtmlPrinter.new(result)
|
51
|
+
printer.print(File.open("test.html", "w"), :min_percent=>0)
|
52
|
+
end
|
25
53
|
client1.disconnect
|
26
54
|
client2.disconnect
|
data/doc/MarilynRPC.html
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Module: MarilynRPC</title>
|
7
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
9
|
+
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
11
|
+
relpath = '';
|
12
|
+
if (relpath != '') relpath += '/';
|
13
|
+
</script>
|
14
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
21
|
+
</script>
|
22
|
+
|
23
|
+
<div id="header">
|
24
|
+
<div id="menu">
|
25
|
+
|
26
|
+
<a href="_index.html">Index (M)</a> »
|
27
|
+
|
28
|
+
|
29
|
+
<span class="title">MarilynRPC</span>
|
30
|
+
|
31
|
+
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="search">
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="clear"></div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<iframe id="search_frame"></iframe>
|
45
|
+
|
46
|
+
<div id="content"><h1>Module: MarilynRPC
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
</h1>
|
51
|
+
|
52
|
+
<dl class="box">
|
53
|
+
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
59
|
+
|
60
|
+
|
61
|
+
<dt class="r1 last">Defined in:</dt>
|
62
|
+
<dd class="r1 last">lib/marilyn-rpc/mails.rb<span class="defines">,<br />
|
63
|
+
lib/marilyn-rpc/client.rb,<br /> lib/marilyn-rpc/version.rb</span>
|
64
|
+
</dd>
|
65
|
+
|
66
|
+
</dl>
|
67
|
+
<div class="clear"></div>
|
68
|
+
|
69
|
+
<h2>Defined Under Namespace</h2>
|
70
|
+
<p class="children">
|
71
|
+
|
72
|
+
|
73
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="MarilynRPC/MailFactory.html" title="MarilynRPC::MailFactory (module)">MailFactory</a></span>, <span class='object_link'><a href="MarilynRPC/MailHelper.html" title="MarilynRPC::MailHelper (module)">MailHelper</a></span>, <span class='object_link'><a href="MarilynRPC/Server.html" title="MarilynRPC::Server (module)">Server</a></span>
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="MarilynRPC/CallRequestMail.html" title="MarilynRPC::CallRequestMail (class)">CallRequestMail</a></span>, <span class='object_link'><a href="MarilynRPC/CallResponseMail.html" title="MarilynRPC::CallResponseMail (class)">CallResponseMail</a></span>, <span class='object_link'><a href="MarilynRPC/Envelope.html" title="MarilynRPC::Envelope (class)">Envelope</a></span>, <span class='object_link'><a href="MarilynRPC/ExceptionMail.html" title="MarilynRPC::ExceptionMail (class)">ExceptionMail</a></span>, <span class='object_link'><a href="MarilynRPC/Gentleman.html" title="MarilynRPC::Gentleman (class)">Gentleman</a></span>, <span class='object_link'><a href="MarilynRPC/NativeClient.html" title="MarilynRPC::NativeClient (class)">NativeClient</a></span>, <span class='object_link'><a href="MarilynRPC/NativeClientProxy.html" title="MarilynRPC::NativeClientProxy (class)">NativeClientProxy</a></span>, <span class='object_link'><a href="MarilynRPC/Service.html" title="MarilynRPC::Service (class)">Service</a></span>, <span class='object_link'><a href="MarilynRPC/ServiceCache.html" title="MarilynRPC::ServiceCache (class)">ServiceCache</a></span>
|
78
|
+
|
79
|
+
|
80
|
+
</p>
|
81
|
+
|
82
|
+
<h2>Constant Summary</h2>
|
83
|
+
|
84
|
+
<dl class="constants">
|
85
|
+
|
86
|
+
<dt id="VERSION-constant" class="">VERSION =
|
87
|
+
|
88
|
+
</dt>
|
89
|
+
<dd><pre class="code"><span class='string val'>'0.0.1'</span>
|
90
|
+
</pre></dd>
|
91
|
+
|
92
|
+
</dl>
|
93
|
+
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
</div>
|
100
|
+
|
101
|
+
<div id="footer">
|
102
|
+
Generated on Wed Jun 8 18:26:45 2011 by
|
103
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
104
|
+
0.6.8 (ruby-1.8.7).
|
105
|
+
</div>
|
106
|
+
|
107
|
+
</body>
|
108
|
+
</html>
|
@@ -0,0 +1,578 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>Class: MarilynRPC::CallRequestMail</title>
|
7
|
+
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
<link rel="stylesheet" href="../css/common.css" type="text/css" media="screen" charset="utf-8" />
|
9
|
+
|
10
|
+
<script type="text/javascript" charset="utf-8">
|
11
|
+
relpath = '..';
|
12
|
+
if (relpath != '') relpath += '/';
|
13
|
+
</script>
|
14
|
+
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
|
15
|
+
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
|
16
|
+
|
17
|
+
</head>
|
18
|
+
<body>
|
19
|
+
<script type="text/javascript" charset="utf-8">
|
20
|
+
if (window.top.frames.main) document.body.className = 'frames';
|
21
|
+
</script>
|
22
|
+
|
23
|
+
<div id="header">
|
24
|
+
<div id="menu">
|
25
|
+
|
26
|
+
<a href="../_index.html">Index (C)</a> »
|
27
|
+
<span class='title'><span class='object_link'><a href="../MarilynRPC.html" title="MarilynRPC (module)">MarilynRPC</a></span></span>
|
28
|
+
»
|
29
|
+
<span class="title">CallRequestMail</span>
|
30
|
+
|
31
|
+
|
32
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
33
|
+
</div>
|
34
|
+
|
35
|
+
<div id="search">
|
36
|
+
<a id="class_list_link" href="#">Class List</a>
|
37
|
+
<a id="method_list_link" href="#">Method List</a>
|
38
|
+
<a id ="file_list_link" href="#">File List</a>
|
39
|
+
</div>
|
40
|
+
|
41
|
+
<div class="clear"></div>
|
42
|
+
</div>
|
43
|
+
|
44
|
+
<iframe id="search_frame"></iframe>
|
45
|
+
|
46
|
+
<div id="content"><h1>Class: MarilynRPC::CallRequestMail
|
47
|
+
|
48
|
+
|
49
|
+
|
50
|
+
</h1>
|
51
|
+
|
52
|
+
<dl class="box">
|
53
|
+
|
54
|
+
<dt class="r1">Inherits:</dt>
|
55
|
+
<dd class="r1">
|
56
|
+
<span class="inheritName">Struct</span>
|
57
|
+
|
58
|
+
<ul class="fullTree">
|
59
|
+
<li>Object</li>
|
60
|
+
|
61
|
+
<li class="next">Struct</li>
|
62
|
+
|
63
|
+
<li class="next">MarilynRPC::CallRequestMail</li>
|
64
|
+
|
65
|
+
</ul>
|
66
|
+
<a href="#" class="inheritanceTree">show all</a>
|
67
|
+
|
68
|
+
</dd>
|
69
|
+
|
70
|
+
|
71
|
+
|
72
|
+
|
73
|
+
|
74
|
+
|
75
|
+
<dt class="r2">Includes:</dt>
|
76
|
+
<dd class="r2"><span class='object_link'><a href="MailHelper.html" title="MarilynRPC::MailHelper (module)">MailHelper</a></span></dd>
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
|
82
|
+
<dt class="r1 last">Defined in:</dt>
|
83
|
+
<dd class="r1 last">lib/marilyn-rpc/mails.rb</dd>
|
84
|
+
|
85
|
+
</dl>
|
86
|
+
<div class="clear"></div>
|
87
|
+
|
88
|
+
|
89
|
+
<h2>Constant Summary</h2>
|
90
|
+
|
91
|
+
<dl class="constants">
|
92
|
+
|
93
|
+
<dt id="TYPE-constant" class="">TYPE =
|
94
|
+
|
95
|
+
</dt>
|
96
|
+
<dd><pre class="code"><span class='MarilynRPC constant id'>MarilynRPC</span><span class='colon2 op'>::</span><span class='MailHelper constant id'>MailHelper</span><span class='dot token'>.</span><span class='type identifier id'>type</span><span class='lparen token'>(</span><span class='integer val'>1</span><span class='rparen token'>)</span>
|
97
|
+
</pre></dd>
|
98
|
+
|
99
|
+
</dl>
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
|
106
|
+
|
107
|
+
|
108
|
+
<h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
|
109
|
+
<ul class="summary">
|
110
|
+
|
111
|
+
<li class="public ">
|
112
|
+
<span class="summary_signature">
|
113
|
+
|
114
|
+
<a href="#args-instance_method" title="#args (instance method)">- (Object) <strong>args</strong> </a>
|
115
|
+
|
116
|
+
|
117
|
+
|
118
|
+
</span>
|
119
|
+
|
120
|
+
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
|
126
|
+
|
127
|
+
|
128
|
+
|
129
|
+
|
130
|
+
<span class="summary_desc"><div class='inline'><p>Returns the value of attribute args.</p></div></span>
|
131
|
+
|
132
|
+
</li>
|
133
|
+
|
134
|
+
|
135
|
+
<li class="public ">
|
136
|
+
<span class="summary_signature">
|
137
|
+
|
138
|
+
<a href="#method-instance_method" title="#method (instance method)">- (Object) <strong>method</strong> </a>
|
139
|
+
|
140
|
+
|
141
|
+
|
142
|
+
</span>
|
143
|
+
|
144
|
+
|
145
|
+
|
146
|
+
|
147
|
+
|
148
|
+
|
149
|
+
|
150
|
+
|
151
|
+
|
152
|
+
|
153
|
+
|
154
|
+
<span class="summary_desc"><div class='inline'><p>Returns the value of attribute method.</p></div></span>
|
155
|
+
|
156
|
+
</li>
|
157
|
+
|
158
|
+
|
159
|
+
<li class="public ">
|
160
|
+
<span class="summary_signature">
|
161
|
+
|
162
|
+
<a href="#path-instance_method" title="#path (instance method)">- (Object) <strong>path</strong> </a>
|
163
|
+
|
164
|
+
|
165
|
+
|
166
|
+
</span>
|
167
|
+
|
168
|
+
|
169
|
+
|
170
|
+
|
171
|
+
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
|
176
|
+
|
177
|
+
|
178
|
+
<span class="summary_desc"><div class='inline'><p>Returns the value of attribute path.</p></div></span>
|
179
|
+
|
180
|
+
</li>
|
181
|
+
|
182
|
+
|
183
|
+
<li class="public ">
|
184
|
+
<span class="summary_signature">
|
185
|
+
|
186
|
+
<a href="#tag-instance_method" title="#tag (instance method)">- (Object) <strong>tag</strong> </a>
|
187
|
+
|
188
|
+
|
189
|
+
|
190
|
+
</span>
|
191
|
+
|
192
|
+
|
193
|
+
|
194
|
+
|
195
|
+
|
196
|
+
|
197
|
+
|
198
|
+
|
199
|
+
|
200
|
+
|
201
|
+
|
202
|
+
<span class="summary_desc"><div class='inline'><p>Returns the value of attribute tag.</p></div></span>
|
203
|
+
|
204
|
+
</li>
|
205
|
+
|
206
|
+
|
207
|
+
</ul>
|
208
|
+
|
209
|
+
|
210
|
+
|
211
|
+
<h2>
|
212
|
+
Instance Method Summary
|
213
|
+
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
|
214
|
+
</h2>
|
215
|
+
|
216
|
+
<ul class="summary">
|
217
|
+
|
218
|
+
<li class="public ">
|
219
|
+
<span class="summary_signature">
|
220
|
+
|
221
|
+
<a href="#decode-instance_method" title="#decode (instance method)">- (Object) <strong>decode</strong>(data) </a>
|
222
|
+
|
223
|
+
|
224
|
+
|
225
|
+
</span>
|
226
|
+
|
227
|
+
|
228
|
+
|
229
|
+
|
230
|
+
|
231
|
+
|
232
|
+
|
233
|
+
|
234
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
235
|
+
|
236
|
+
</li>
|
237
|
+
|
238
|
+
|
239
|
+
<li class="public ">
|
240
|
+
<span class="summary_signature">
|
241
|
+
|
242
|
+
<a href="#encode-instance_method" title="#encode (instance method)">- (Object) <strong>encode</strong> </a>
|
243
|
+
|
244
|
+
|
245
|
+
|
246
|
+
</span>
|
247
|
+
|
248
|
+
|
249
|
+
|
250
|
+
|
251
|
+
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
<span class="summary_desc"><div class='inline'></div></span>
|
256
|
+
|
257
|
+
</li>
|
258
|
+
|
259
|
+
|
260
|
+
</ul>
|
261
|
+
|
262
|
+
|
263
|
+
|
264
|
+
|
265
|
+
|
266
|
+
|
267
|
+
|
268
|
+
|
269
|
+
|
270
|
+
|
271
|
+
<h3 class="inherited">Methods included from <span class='object_link'><a href="MailHelper.html" title="MarilynRPC::MailHelper (module)">MailHelper</a></span></h3>
|
272
|
+
<p class="inherited"><span class='object_link'><a href="MailHelper.html#deserialize-instance_method" title="MarilynRPC::MailHelper#deserialize (method)">#deserialize</a></span>, <span class='object_link'><a href="MailHelper.html#only_data-instance_method" title="MarilynRPC::MailHelper#only_data (method)">#only_data</a></span>, <span class='object_link'><a href="MailHelper.html#serialize-instance_method" title="MarilynRPC::MailHelper#serialize (method)">#serialize</a></span>, <span class='object_link'><a href="MailHelper.html#type-class_method" title="MarilynRPC::MailHelper.type (method)">type</a></span></p>
|
273
|
+
|
274
|
+
|
275
|
+
<div id="instance_attr_details" class="attr_details">
|
276
|
+
<h2>Instance Attribute Details</h2>
|
277
|
+
|
278
|
+
|
279
|
+
<span id="args=-instance_method"></span>
|
280
|
+
<span id="args-instance_method"></span>
|
281
|
+
<div class="method_details first">
|
282
|
+
<p class="signature first" id="args-instance_method">
|
283
|
+
|
284
|
+
- (<tt>Object</tt>) <strong>args</strong>
|
285
|
+
|
286
|
+
|
287
|
+
|
288
|
+
</p><div class="docstring">
|
289
|
+
<div class="discussion">
|
290
|
+
<p>Returns the value of attribute args</p>
|
291
|
+
|
292
|
+
</div>
|
293
|
+
</div>
|
294
|
+
<div class="tags">
|
295
|
+
<h3>Returns:</h3>
|
296
|
+
<ul class="return">
|
297
|
+
|
298
|
+
<li>
|
299
|
+
|
300
|
+
<span class='type'>(<tt>Object</tt>)</span>
|
301
|
+
|
302
|
+
|
303
|
+
|
304
|
+
|
305
|
+
—
|
306
|
+
<div class='inline'><p>the current value of args</p></div>
|
307
|
+
|
308
|
+
</li>
|
309
|
+
|
310
|
+
</ul>
|
311
|
+
|
312
|
+
</div><table class="source_code">
|
313
|
+
<tr>
|
314
|
+
<td>
|
315
|
+
<pre class="lines">
|
316
|
+
|
317
|
+
|
318
|
+
33
|
319
|
+
34
|
320
|
+
35</pre>
|
321
|
+
</td>
|
322
|
+
<td>
|
323
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 33</span>
|
324
|
+
|
325
|
+
<span class='def def kw'>def</span> <span class='args identifier id'>args</span>
|
326
|
+
<span class='@args ivar id'>@args</span>
|
327
|
+
<span class='end end kw'>end</span>
|
328
|
+
</pre>
|
329
|
+
</td>
|
330
|
+
</tr>
|
331
|
+
</table>
|
332
|
+
</div>
|
333
|
+
|
334
|
+
|
335
|
+
<span id="method=-instance_method"></span>
|
336
|
+
<span id="method-instance_method"></span>
|
337
|
+
<div class="method_details ">
|
338
|
+
<p class="signature " id="method-instance_method">
|
339
|
+
|
340
|
+
- (<tt>Object</tt>) <strong>method</strong>
|
341
|
+
|
342
|
+
|
343
|
+
|
344
|
+
</p><div class="docstring">
|
345
|
+
<div class="discussion">
|
346
|
+
<p>Returns the value of attribute method</p>
|
347
|
+
|
348
|
+
</div>
|
349
|
+
</div>
|
350
|
+
<div class="tags">
|
351
|
+
<h3>Returns:</h3>
|
352
|
+
<ul class="return">
|
353
|
+
|
354
|
+
<li>
|
355
|
+
|
356
|
+
<span class='type'>(<tt>Object</tt>)</span>
|
357
|
+
|
358
|
+
|
359
|
+
|
360
|
+
|
361
|
+
—
|
362
|
+
<div class='inline'><p>the current value of method</p></div>
|
363
|
+
|
364
|
+
</li>
|
365
|
+
|
366
|
+
</ul>
|
367
|
+
|
368
|
+
</div><table class="source_code">
|
369
|
+
<tr>
|
370
|
+
<td>
|
371
|
+
<pre class="lines">
|
372
|
+
|
373
|
+
|
374
|
+
33
|
375
|
+
34
|
376
|
+
35</pre>
|
377
|
+
</td>
|
378
|
+
<td>
|
379
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 33</span>
|
380
|
+
|
381
|
+
<span class='def def kw'>def</span> <span class='method identifier id'>method</span>
|
382
|
+
<span class='@method ivar id'>@method</span>
|
383
|
+
<span class='end end kw'>end</span>
|
384
|
+
</pre>
|
385
|
+
</td>
|
386
|
+
</tr>
|
387
|
+
</table>
|
388
|
+
</div>
|
389
|
+
|
390
|
+
|
391
|
+
<span id="path=-instance_method"></span>
|
392
|
+
<span id="path-instance_method"></span>
|
393
|
+
<div class="method_details ">
|
394
|
+
<p class="signature " id="path-instance_method">
|
395
|
+
|
396
|
+
- (<tt>Object</tt>) <strong>path</strong>
|
397
|
+
|
398
|
+
|
399
|
+
|
400
|
+
</p><div class="docstring">
|
401
|
+
<div class="discussion">
|
402
|
+
<p>Returns the value of attribute path</p>
|
403
|
+
|
404
|
+
</div>
|
405
|
+
</div>
|
406
|
+
<div class="tags">
|
407
|
+
<h3>Returns:</h3>
|
408
|
+
<ul class="return">
|
409
|
+
|
410
|
+
<li>
|
411
|
+
|
412
|
+
<span class='type'>(<tt>Object</tt>)</span>
|
413
|
+
|
414
|
+
|
415
|
+
|
416
|
+
|
417
|
+
—
|
418
|
+
<div class='inline'><p>the current value of path</p></div>
|
419
|
+
|
420
|
+
</li>
|
421
|
+
|
422
|
+
</ul>
|
423
|
+
|
424
|
+
</div><table class="source_code">
|
425
|
+
<tr>
|
426
|
+
<td>
|
427
|
+
<pre class="lines">
|
428
|
+
|
429
|
+
|
430
|
+
33
|
431
|
+
34
|
432
|
+
35</pre>
|
433
|
+
</td>
|
434
|
+
<td>
|
435
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 33</span>
|
436
|
+
|
437
|
+
<span class='def def kw'>def</span> <span class='path identifier id'>path</span>
|
438
|
+
<span class='@path ivar id'>@path</span>
|
439
|
+
<span class='end end kw'>end</span>
|
440
|
+
</pre>
|
441
|
+
</td>
|
442
|
+
</tr>
|
443
|
+
</table>
|
444
|
+
</div>
|
445
|
+
|
446
|
+
|
447
|
+
<span id="tag=-instance_method"></span>
|
448
|
+
<span id="tag-instance_method"></span>
|
449
|
+
<div class="method_details ">
|
450
|
+
<p class="signature " id="tag-instance_method">
|
451
|
+
|
452
|
+
- (<tt>Object</tt>) <strong>tag</strong>
|
453
|
+
|
454
|
+
|
455
|
+
|
456
|
+
</p><div class="docstring">
|
457
|
+
<div class="discussion">
|
458
|
+
<p>Returns the value of attribute tag</p>
|
459
|
+
|
460
|
+
</div>
|
461
|
+
</div>
|
462
|
+
<div class="tags">
|
463
|
+
<h3>Returns:</h3>
|
464
|
+
<ul class="return">
|
465
|
+
|
466
|
+
<li>
|
467
|
+
|
468
|
+
<span class='type'>(<tt>Object</tt>)</span>
|
469
|
+
|
470
|
+
|
471
|
+
|
472
|
+
|
473
|
+
—
|
474
|
+
<div class='inline'><p>the current value of tag</p></div>
|
475
|
+
|
476
|
+
</li>
|
477
|
+
|
478
|
+
</ul>
|
479
|
+
|
480
|
+
</div><table class="source_code">
|
481
|
+
<tr>
|
482
|
+
<td>
|
483
|
+
<pre class="lines">
|
484
|
+
|
485
|
+
|
486
|
+
33
|
487
|
+
34
|
488
|
+
35</pre>
|
489
|
+
</td>
|
490
|
+
<td>
|
491
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 33</span>
|
492
|
+
|
493
|
+
<span class='def def kw'>def</span> <span class='tag identifier id'>tag</span>
|
494
|
+
<span class='@tag ivar id'>@tag</span>
|
495
|
+
<span class='end end kw'>end</span>
|
496
|
+
</pre>
|
497
|
+
</td>
|
498
|
+
</tr>
|
499
|
+
</table>
|
500
|
+
</div>
|
501
|
+
|
502
|
+
</div>
|
503
|
+
|
504
|
+
|
505
|
+
<div id="instance_method_details" class="method_details_list">
|
506
|
+
<h2>Instance Method Details</h2>
|
507
|
+
|
508
|
+
|
509
|
+
<div class="method_details first">
|
510
|
+
<p class="signature first" id="decode-instance_method">
|
511
|
+
|
512
|
+
- (<tt>Object</tt>) <strong>decode</strong>(data)
|
513
|
+
|
514
|
+
|
515
|
+
|
516
|
+
</p><table class="source_code">
|
517
|
+
<tr>
|
518
|
+
<td>
|
519
|
+
<pre class="lines">
|
520
|
+
|
521
|
+
|
522
|
+
41
|
523
|
+
42
|
524
|
+
43</pre>
|
525
|
+
</td>
|
526
|
+
<td>
|
527
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 41</span>
|
528
|
+
|
529
|
+
<span class='def def kw'>def</span> <span class='decode identifier id'>decode</span><span class='lparen token'>(</span><span class='data identifier id'>data</span><span class='rparen token'>)</span>
|
530
|
+
<span class='self self kw'>self</span><span class='dot token'>.</span><span class='tag identifier id'>tag</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='path identifier id'>path</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='method identifier id'>method</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='args identifier id'>args</span> <span class='assign token'>=</span> <span class='deserialize identifier id'>deserialize</span><span class='lparen token'>(</span><span class='only_data identifier id'>only_data</span><span class='lparen token'>(</span><span class='data identifier id'>data</span><span class='rparen token'>)</span><span class='rparen token'>)</span>
|
531
|
+
<span class='end end kw'>end</span>
|
532
|
+
</pre>
|
533
|
+
</td>
|
534
|
+
</tr>
|
535
|
+
</table>
|
536
|
+
</div>
|
537
|
+
|
538
|
+
<div class="method_details ">
|
539
|
+
<p class="signature " id="encode-instance_method">
|
540
|
+
|
541
|
+
- (<tt>Object</tt>) <strong>encode</strong>
|
542
|
+
|
543
|
+
|
544
|
+
|
545
|
+
</p><table class="source_code">
|
546
|
+
<tr>
|
547
|
+
<td>
|
548
|
+
<pre class="lines">
|
549
|
+
|
550
|
+
|
551
|
+
37
|
552
|
+
38
|
553
|
+
39</pre>
|
554
|
+
</td>
|
555
|
+
<td>
|
556
|
+
<pre class="code"><span class="info file"># File 'lib/marilyn-rpc/mails.rb', line 37</span>
|
557
|
+
|
558
|
+
<span class='def def kw'>def</span> <span class='encode identifier id'>encode</span>
|
559
|
+
<span class='TYPE constant id'>TYPE</span> <span class='plus op'>+</span> <span class='serialize identifier id'>serialize</span><span class='lparen token'>(</span><span class='lbrack token'>[</span><span class='self self kw'>self</span><span class='dot token'>.</span><span class='tag identifier id'>tag</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='path identifier id'>path</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='method identifier id'>method</span><span class='comma token'>,</span> <span class='self self kw'>self</span><span class='dot token'>.</span><span class='args identifier id'>args</span><span class='rbrack token'>]</span><span class='rparen token'>)</span>
|
560
|
+
<span class='end end kw'>end</span>
|
561
|
+
</pre>
|
562
|
+
</td>
|
563
|
+
</tr>
|
564
|
+
</table>
|
565
|
+
</div>
|
566
|
+
|
567
|
+
</div>
|
568
|
+
|
569
|
+
</div>
|
570
|
+
|
571
|
+
<div id="footer">
|
572
|
+
Generated on Wed Jun 8 18:26:45 2011 by
|
573
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
574
|
+
0.6.8 (ruby-1.8.7).
|
575
|
+
</div>
|
576
|
+
|
577
|
+
</body>
|
578
|
+
</html>
|