evented-memcache-client 1.0.0

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.
Files changed (43) hide show
  1. data/CHANGELOG +113 -0
  2. data/COPYING +348 -0
  3. data/README +75 -0
  4. data/Rakefile +123 -0
  5. data/doc/classes/EventMachine.html +146 -0
  6. data/doc/classes/EventMachine/Protocols.html +135 -0
  7. data/doc/classes/EventMachine/Protocols/Memcache.html +153 -0
  8. data/doc/classes/EventMachine/Protocols/Memcache/Client.html +121 -0
  9. data/doc/classes/EventMachine/Protocols/Memcache/Connectable.html +615 -0
  10. data/doc/classes/EventMachine/Protocols/Memcache/Connection.html +192 -0
  11. data/doc/classes/EventMachine/Protocols/Memcache/Sender.html +389 -0
  12. data/doc/classes/EventMachine/Protocols/Memcache/Server.html +463 -0
  13. data/doc/classes/EventMachine/Protocols/Memcache/TenaciousMC.html +277 -0
  14. data/doc/classes/MyHandler.html +197 -0
  15. data/doc/created.rid +1 -0
  16. data/doc/files/COPYING.html +473 -0
  17. data/doc/files/README.html +187 -0
  18. data/doc/files/extras/consumer_rb.html +110 -0
  19. data/doc/files/extras/producer_rb.html +110 -0
  20. data/doc/files/extras/server_rb.html +110 -0
  21. data/doc/files/lib/evented-memcache-client_rb.html +125 -0
  22. data/doc/files/lib/evented_memcache_client/client_rb.html +120 -0
  23. data/doc/files/lib/evented_memcache_client/connectable_rb.html +120 -0
  24. data/doc/files/lib/evented_memcache_client/connection_rb.html +120 -0
  25. data/doc/files/lib/evented_memcache_client/sender_rb.html +112 -0
  26. data/doc/files/lib/evented_memcache_client/server_rb.html +120 -0
  27. data/doc/files/lib/evented_memcache_client/tenacious_rb.html +120 -0
  28. data/doc/fr_class_index.html +36 -0
  29. data/doc/fr_file_index.html +38 -0
  30. data/doc/fr_method_index.html +66 -0
  31. data/doc/index.html +24 -0
  32. data/doc/rdoc-style.css +208 -0
  33. data/extras/consumer.rb +41 -0
  34. data/extras/producer.rb +22 -0
  35. data/extras/server.rb +33 -0
  36. data/lib/evented-memcache-client.rb +37 -0
  37. data/lib/evented_memcache_client/client.rb +36 -0
  38. data/lib/evented_memcache_client/connectable.rb +324 -0
  39. data/lib/evented_memcache_client/connection.rb +73 -0
  40. data/lib/evented_memcache_client/sender.rb +184 -0
  41. data/lib/evented_memcache_client/server.rb +118 -0
  42. data/lib/evented_memcache_client/tenacious.rb +106 -0
  43. metadata +115 -0
@@ -0,0 +1,113 @@
1
+ #
2
+ # This file is automatically generated using 'rake changelog'
3
+ #
4
+ commit c3394a75be1ec79dd12c2bd1d65d8403f2cfa9bb
5
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
6
+ Date: Tue Sep 16 02:17:19 2008 -0400
7
+
8
+ Fixed port numbers in examples, made consumer's logging a little more useful.
9
+
10
+ .gitignore
11
+ extras/consumer.rb
12
+ extras/producer.rb
13
+
14
+ commit ae89aef21dd39e14a34d641aa0c0de9630f4ff7e
15
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
16
+ Date: Thu Sep 11 02:11:22 2008 -0400
17
+
18
+ Added additional, though still rudimentary support for the server side
19
+ of the protocol. We now do 'set' and 'get', with 'VALUE' response.
20
+
21
+ CHANGELOG
22
+ extras/consumer.rb
23
+ extras/producer.rb
24
+ extras/server.rb
25
+ lib/evented_memcache_client/connectable.rb
26
+ lib/evented_memcache_client/sender.rb
27
+ lib/evented_memcache_client/server.rb
28
+
29
+ commit 58ae09ef1879230e0c9399c9f42222d0a25af943
30
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
31
+ Date: Thu Sep 11 00:05:28 2008 -0400
32
+
33
+ Preparing for release into the wild; rake task for pushing to RubyForge.
34
+
35
+ Added VERSION to lib/evented-memcache-client.rb for use in rake tasks.
36
+ Added fist cut at a CHANGELOG and a .gitignore for the pkg subdir.
37
+
38
+ .gitignore
39
+ CHANGELOG
40
+ Rakefile
41
+ lib/evented-memcache-client.rb
42
+
43
+ commit eda6d55da8eb0d2e36dc98278dd27cde15ad547c
44
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
45
+ Date: Wed Sep 10 21:31:38 2008 -0400
46
+
47
+ Not using messages.rb
48
+
49
+ lib/evented_memcache_client/messages.rb
50
+
51
+ commit 25b60f1f080bc0a73528f1907cfffdfb19655e38
52
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
53
+ Date: Wed Sep 10 21:30:08 2008 -0400
54
+
55
+ Refactored, add server.
56
+
57
+ README
58
+ extras/consumer.rb
59
+ extras/producer.rb
60
+ extras/server.rb
61
+ lib/evented-memcache-client.rb
62
+ lib/evented_memcache_client/client.rb
63
+ lib/evented_memcache_client/connectable.rb
64
+ lib/evented_memcache_client/connection.rb
65
+ lib/evented_memcache_client/messages.rb
66
+ lib/evented_memcache_client/sender.rb
67
+ lib/evented_memcache_client/server.rb
68
+ lib/evented_memcache_client/tenacious.rb
69
+
70
+ commit 4dfc861a891629896570ac802bd6b1d11e893583
71
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
72
+ Date: Wed Sep 10 18:25:10 2008 -0400
73
+
74
+ Added tenacious connection, more flexibility in defining callbacks (via mixin or object).
75
+
76
+ Rakefile
77
+ extras/consumer.rb
78
+ extras/producer.rb
79
+ lib/evented-memcache-client.rb
80
+ lib/evented_memcache_client/client.rb
81
+ lib/evented_memcache_client/tenacious.rb
82
+
83
+ commit c6bf4dc69c076163b39b88bd77bf334c2a1231cf
84
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
85
+ Date: Mon Sep 8 23:06:00 2008 -0400
86
+
87
+ Argh. Fixed tabs.
88
+
89
+ README
90
+
91
+ commit c48144310df96cd96b32ae9f04282b15fbbfccc7
92
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
93
+ Date: Mon Sep 8 23:05:06 2008 -0400
94
+
95
+ fixed typo
96
+
97
+ README
98
+
99
+ commit 185d579926d40505a2ce7e392cd6c89a72cd2ef8
100
+ Author: Colin Steele <colinsteele@colin-steeles-macbook-pro.local>
101
+ Date: Mon Sep 8 23:02:41 2008 -0400
102
+
103
+ first commit
104
+
105
+ CHANGELOG
106
+ COPYING
107
+ README
108
+ Rakefile
109
+ extras/consumer.rb
110
+ extras/producer.rb
111
+ lib/evented-memcache-client.rb
112
+ lib/evented_memcache_client/client.rb
113
+ lib/evented_memcache_client/sender.rb
data/COPYING ADDED
@@ -0,0 +1,348 @@
1
+ Evented Memcache Client
2
+
3
+ Copyright (c) 2008 Colin Steele
4
+
5
+
6
+ THE RUBY LICENSE
7
+ (http://www.ruby-lang.org/en/LICENSE.txt)
8
+
9
+ You may redistribute this software and/or modify it under either the terms of
10
+ the GPL (see below), or the conditions below:
11
+
12
+ 1. You may make and give away verbatim copies of the source form of the
13
+ software without restriction, provided that you duplicate all of the
14
+ original copyright notices and associated disclaimers.
15
+
16
+ 2. You may modify your copy of the software in any way, provided that
17
+ you do at least ONE of the following:
18
+
19
+ a) place your modifications in the Public Domain or otherwise
20
+ make them Freely Available, such as by posting said
21
+ modifications to Usenet or an equivalent medium, or by allowing
22
+ the author to include your modifications in the software.
23
+
24
+ b) use the modified software only within your corporation or
25
+ organization.
26
+
27
+ c) rename any non-standard executables so the names do not conflict
28
+ with standard executables, which must also be provided.
29
+
30
+ d) make other distribution arrangements with the author.
31
+
32
+ 3. You may distribute the software in object code or executable
33
+ form, provided that you do at least ONE of the following:
34
+
35
+ a) distribute the executables and library files of the software,
36
+ together with instructions (in the manual page or equivalent)
37
+ on where to get the original distribution.
38
+
39
+ b) accompany the distribution with the machine-readable source of
40
+ the software.
41
+
42
+ c) give non-standard executables non-standard names, with
43
+ instructions on where to get the original software distribution.
44
+
45
+ d) make other distribution arrangements with the author.
46
+
47
+ 4. You may modify and include the part of the software into any other
48
+ software (possibly commercial). But some files in the distribution
49
+ are not written by the author, so that they are not under these terms.
50
+
51
+ For the list of those files and their copying conditions, see the
52
+ file LEGAL.
53
+
54
+ 5. The scripts and library files supplied as input to or produced as
55
+ output from the software do not automatically fall under the
56
+ copyright of the software, but belong to whomever generated them,
57
+ and may be sold commercially, and may be aggregated with this
58
+ software.
59
+
60
+ 6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
61
+ IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
62
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
63
+ PURPOSE.
64
+
65
+ ----------------------------------------------------------------------------
66
+
67
+
68
+ GNU GENERAL PUBLIC LICENSE
69
+ Version 2, June 1991
70
+
71
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.
72
+ 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
73
+ Everyone is permitted to copy and distribute verbatim copies
74
+ of this license document, but changing it is not allowed.
75
+
76
+ Preamble
77
+
78
+ The licenses for most software are designed to take away your
79
+ freedom to share and change it. By contrast, the GNU General Public
80
+ License is intended to guarantee your freedom to share and change free
81
+ software--to make sure the software is free for all its users. This
82
+ General Public License applies to most of the Free Software
83
+ Foundation's software and to any other program whose authors commit to
84
+ using it. (Some other Free Software Foundation software is covered by
85
+ the GNU Library General Public License instead.) You can apply it to
86
+ your programs, too.
87
+
88
+ When we speak of free software, we are referring to freedom, not
89
+ price. Our General Public Licenses are designed to make sure that you
90
+ have the freedom to distribute copies of free software (and charge for
91
+ this service if you wish), that you receive source code or can get it
92
+ if you want it, that you can change the software or use pieces of it
93
+ in new free programs; and that you know you can do these things.
94
+
95
+ To protect your rights, we need to make restrictions that forbid
96
+ anyone to deny you these rights or to ask you to surrender the rights.
97
+ These restrictions translate to certain responsibilities for you if you
98
+ distribute copies of the software, or if you modify it.
99
+
100
+ For example, if you distribute copies of such a program, whether
101
+ gratis or for a fee, you must give the recipients all the rights that
102
+ you have. You must make sure that they, too, receive or can get the
103
+ source code. And you must show them these terms so they know their
104
+ rights.
105
+
106
+ We protect your rights with two steps: (1) copyright the software, and
107
+ (2) offer you this license which gives you legal permission to copy,
108
+ distribute and/or modify the software.
109
+
110
+ Also, for each author's protection and ours, we want to make certain
111
+ that everyone understands that there is no warranty for this free
112
+ software. If the software is modified by someone else and passed on, we
113
+ want its recipients to know that what they have is not the original, so
114
+ that any problems introduced by others will not reflect on the original
115
+ authors' reputations.
116
+
117
+ Finally, any free program is threatened constantly by software
118
+ patents. We wish to avoid the danger that redistributors of a free
119
+ program will individually obtain patent licenses, in effect making the
120
+ program proprietary. To prevent this, we have made it clear that any
121
+ patent must be licensed for everyone's free use or not licensed at all.
122
+
123
+ The precise terms and conditions for copying, distribution and
124
+ modification follow.
125
+
126
+ GNU GENERAL PUBLIC LICENSE
127
+ TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
128
+
129
+ 0. This License applies to any program or other work which contains
130
+ a notice placed by the copyright holder saying it may be distributed
131
+ under the terms of this General Public License. The "Program", below,
132
+ refers to any such program or work, and a "work based on the Program"
133
+ means either the Program or any derivative work under copyright law:
134
+ that is to say, a work containing the Program or a portion of it,
135
+ either verbatim or with modifications and/or translated into another
136
+ language. (Hereinafter, translation is included without limitation in
137
+ the term "modification".) Each licensee is addressed as "you".
138
+
139
+ Activities other than copying, distribution and modification are not
140
+ covered by this License; they are outside its scope. The act of
141
+ running the Program is not restricted, and the output from the Program
142
+ is covered only if its contents constitute a work based on the
143
+ Program (independent of having been made by running the Program).
144
+ Whether that is true depends on what the Program does.
145
+
146
+ 1. You may copy and distribute verbatim copies of the Program's
147
+ source code as you receive it, in any medium, provided that you
148
+ conspicuously and appropriately publish on each copy an appropriate
149
+ copyright notice and disclaimer of warranty; keep intact all the
150
+ notices that refer to this License and to the absence of any warranty;
151
+ and give any other recipients of the Program a copy of this License
152
+ along with the Program.
153
+
154
+ You may charge a fee for the physical act of transferring a copy, and
155
+ you may at your option offer warranty protection in exchange for a fee.
156
+
157
+ 2. You may modify your copy or copies of the Program or any portion
158
+ of it, thus forming a work based on the Program, and copy and
159
+ distribute such modifications or work under the terms of Section 1
160
+ above, provided that you also meet all of these conditions:
161
+
162
+ a) You must cause the modified files to carry prominent notices
163
+ stating that you changed the files and the date of any change.
164
+
165
+ b) You must cause any work that you distribute or publish, that in
166
+ whole or in part contains or is derived from the Program or any
167
+ part thereof, to be licensed as a whole at no charge to all third
168
+ parties under the terms of this License.
169
+
170
+ c) If the modified program normally reads commands interactively
171
+ when run, you must cause it, when started running for such
172
+ interactive use in the most ordinary way, to print or display an
173
+ announcement including an appropriate copyright notice and a
174
+ notice that there is no warranty (or else, saying that you provide
175
+ a warranty) and that users may redistribute the program under
176
+ these conditions, and telling the user how to view a copy of this
177
+ License. (Exception: if the Program itself is interactive but
178
+ does not normally print such an announcement, your work based on
179
+ the Program is not required to print an announcement.)
180
+
181
+ These requirements apply to the modified work as a whole. If
182
+ identifiable sections of that work are not derived from the Program,
183
+ and can be reasonably considered independent and separate works in
184
+ themselves, then this License, and its terms, do not apply to those
185
+ sections when you distribute them as separate works. But when you
186
+ distribute the same sections as part of a whole which is a work based
187
+ on the Program, the distribution of the whole must be on the terms of
188
+ this License, whose permissions for other licensees extend to the
189
+ entire whole, and thus to each and every part regardless of who wrote it.
190
+
191
+ Thus, it is not the intent of this section to claim rights or contest
192
+ your rights to work written entirely by you; rather, the intent is to
193
+ exercise the right to control the distribution of derivative or
194
+ collective works based on the Program.
195
+
196
+ In addition, mere aggregation of another work not based on the Program
197
+ with the Program (or with a work based on the Program) on a volume of
198
+ a storage or distribution medium does not bring the other work under
199
+ the scope of this License.
200
+
201
+ 3. You may copy and distribute the Program (or a work based on it,
202
+ under Section 2) in object code or executable form under the terms of
203
+ Sections 1 and 2 above provided that you also do one of the following:
204
+
205
+ a) Accompany it with the complete corresponding machine-readable
206
+ source code, which must be distributed under the terms of Sections
207
+ 1 and 2 above on a medium customarily used for software interchange; or,
208
+
209
+ b) Accompany it with a written offer, valid for at least three
210
+ years, to give any third party, for a charge no more than your
211
+ cost of physically performing source distribution, a complete
212
+ machine-readable copy of the corresponding source code, to be
213
+ distributed under the terms of Sections 1 and 2 above on a medium
214
+ customarily used for software interchange; or,
215
+
216
+ c) Accompany it with the information you received as to the offer
217
+ to distribute corresponding source code. (This alternative is
218
+ allowed only for noncommercial distribution and only if you
219
+ received the program in object code or executable form with such
220
+ an offer, in accord with Subsection b above.)
221
+
222
+ The source code for a work means the preferred form of the work for
223
+ making modifications to it. For an executable work, complete source
224
+ code means all the source code for all modules it contains, plus any
225
+ associated interface definition files, plus the scripts used to
226
+ control compilation and installation of the executable. However, as a
227
+ special exception, the source code distributed need not include
228
+ anything that is normally distributed (in either source or binary
229
+ form) with the major components (compiler, kernel, and so on) of the
230
+ operating system on which the executable runs, unless that component
231
+ itself accompanies the executable.
232
+
233
+ If distribution of executable or object code is made by offering
234
+ access to copy from a designated place, then offering equivalent
235
+ access to copy the source code from the same place counts as
236
+ distribution of the source code, even though third parties are not
237
+ compelled to copy the source along with the object code.
238
+
239
+ 4. You may not copy, modify, sublicense, or distribute the Program
240
+ except as expressly provided under this License. Any attempt
241
+ otherwise to copy, modify, sublicense or distribute the Program is
242
+ void, and will automatically terminate your rights under this License.
243
+ However, parties who have received copies, or rights, from you under
244
+ this License will not have their licenses terminated so long as such
245
+ parties remain in full compliance.
246
+
247
+ 5. You are not required to accept this License, since you have not
248
+ signed it. However, nothing else grants you permission to modify or
249
+ distribute the Program or its derivative works. These actions are
250
+ prohibited by law if you do not accept this License. Therefore, by
251
+ modifying or distributing the Program (or any work based on the
252
+ Program), you indicate your acceptance of this License to do so, and
253
+ all its terms and conditions for copying, distributing or modifying
254
+ the Program or works based on it.
255
+
256
+ 6. Each time you redistribute the Program (or any work based on the
257
+ Program), the recipient automatically receives a license from the
258
+ original licensor to copy, distribute or modify the Program subject to
259
+ these terms and conditions. You may not impose any further
260
+ restrictions on the recipients' exercise of the rights granted herein.
261
+ You are not responsible for enforcing compliance by third parties to
262
+ this License.
263
+
264
+ 7. If, as a consequence of a court judgment or allegation of patent
265
+ infringement or for any other reason (not limited to patent issues),
266
+ conditions are imposed on you (whether by court order, agreement or
267
+ otherwise) that contradict the conditions of this License, they do not
268
+ excuse you from the conditions of this License. If you cannot
269
+ distribute so as to satisfy simultaneously your obligations under this
270
+ License and any other pertinent obligations, then as a consequence you
271
+ may not distribute the Program at all. For example, if a patent
272
+ license would not permit royalty-free redistribution of the Program by
273
+ all those who receive copies directly or indirectly through you, then
274
+ the only way you could satisfy both it and this License would be to
275
+ refrain entirely from distribution of the Program.
276
+
277
+ If any portion of this section is held invalid or unenforceable under
278
+ any particular circumstance, the balance of the section is intended to
279
+ apply and the section as a whole is intended to apply in other
280
+ circumstances.
281
+
282
+ It is not the purpose of this section to induce you to infringe any
283
+ patents or other property right claims or to contest validity of any
284
+ such claims; this section has the sole purpose of protecting the
285
+ integrity of the free software distribution system, which is
286
+ implemented by public license practices. Many people have made
287
+ generous contributions to the wide range of software distributed
288
+ through that system in reliance on consistent application of that
289
+ system; it is up to the author/donor to decide if he or she is willing
290
+ to distribute software through any other system and a licensee cannot
291
+ impose that choice.
292
+
293
+ This section is intended to make thoroughly clear what is believed to
294
+ be a consequence of the rest of this License.
295
+
296
+ 8. If the distribution and/or use of the Program is restricted in
297
+ certain countries either by patents or by copyrighted interfaces, the
298
+ original copyright holder who places the Program under this License
299
+ may add an explicit geographical distribution limitation excluding
300
+ those countries, so that distribution is permitted only in or among
301
+ countries not thus excluded. In such case, this License incorporates
302
+ the limitation as if written in the body of this License.
303
+
304
+ 9. The Free Software Foundation may publish revised and/or new versions
305
+ of the General Public License from time to time. Such new versions will
306
+ be similar in spirit to the present version, but may differ in detail to
307
+ address new problems or concerns.
308
+
309
+ Each version is given a distinguishing version number. If the Program
310
+ specifies a version number of this License which applies to it and "any
311
+ later version", you have the option of following the terms and conditions
312
+ either of that version or of any later version published by the Free
313
+ Software Foundation. If the Program does not specify a version number of
314
+ this License, you may choose any version ever published by the Free Software
315
+ Foundation.
316
+
317
+ 10. If you wish to incorporate parts of the Program into other free
318
+ programs whose distribution conditions are different, write to the author
319
+ to ask for permission. For software which is copyrighted by the Free
320
+ Software Foundation, write to the Free Software Foundation; we sometimes
321
+ make exceptions for this. Our decision will be guided by the two goals
322
+ of preserving the free status of all derivatives of our free software and
323
+ of promoting the sharing and reuse of software generally.
324
+
325
+ NO WARRANTY
326
+
327
+ 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
328
+ FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
329
+ OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
330
+ PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
331
+ OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
332
+ MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
333
+ TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
334
+ PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
335
+ REPAIR OR CORRECTION.
336
+
337
+ 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
338
+ WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
339
+ REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
340
+ INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
341
+ OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
342
+ TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
343
+ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
344
+ PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
345
+ POSSIBILITY OF SUCH DAMAGES.
346
+
347
+ END OF TERMS AND CONDITIONS
348
+