amps-python-client 5.3.4.2__zip → 5.3.4.3__zip

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 (507) hide show
  1. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/LICENSE +50 -39
  2. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/PKG-INFO +1 -1
  3. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/.buildinfo +1 -1
  4. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/code.html +717 -482
  5. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/genindex.html +4 -4
  6. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/index.html +4 -4
  7. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/py-modindex.html +4 -4
  8. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/search.html +4 -4
  9. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/searchindex.js +1 -1
  10. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspyver.h +1 -1
  11. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/index.html +1 -1
  12. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/setup.py +4 -4
  13. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/setup_amps.py +3 -3
  14. amps-python-client-5.3.4.3/src/client_docs.h +1210 -0
  15. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/command_docs.h +10 -5
  16. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/BlockPublishStore.hpp +0 -3
  17. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/BlockStore.hpp +0 -3
  18. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/Field.hpp +6 -2
  19. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MMapStoreBuffer.hpp +21 -14
  20. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MemoryStoreBuffer.hpp +4 -1
  21. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/Message.hpp +8 -0
  22. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ServerChooser.hpp +15 -4
  23. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/amps.h +12 -0
  24. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/amps_impl.h +12 -0
  25. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ampscrc.hpp +2 -4
  26. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ampsplusplus.hpp +13 -17
  27. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ampsver.h +2 -2
  28. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/util.hpp +4 -4
  29. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/amps_ssl.c +87 -11
  30. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/atfork.c +33 -0
  31. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/tcp.c +210 -44
  32. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/tcps.c +168 -48
  33. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/unix.c +88 -27
  34. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/exponentialdelaystrategy.cpp +23 -29
  35. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/fixeddelaystrategy.cpp +13 -12
  36. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/haclient_docs.h +34 -20
  37. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/nvfixbuilder.cpp +3 -3
  38. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/nvfixbuilder_docs.h +3 -3
  39. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/nvfixshredder_docs.h +3 -3
  40. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/serverchooser_docs.h +4 -4
  41. amps-python-client-5.3.4.2/src/client_docs.h +0 -956
  42. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/HISTORY +0 -0
  43. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/README.md +0 -0
  44. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/ack-messages.doctree +0 -0
  45. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/content-messages.doctree +0 -0
  46. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/intro.doctree +0 -0
  47. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/logon.doctree +0 -0
  48. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/protocol-reference.doctree +0 -0
  49. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/publishing.doctree +0 -0
  50. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/query-delimiters.doctree +0 -0
  51. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/query-subscribe.doctree +0 -0
  52. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/removing.doctree +0 -0
  53. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/chapters/utilities.doctree +0 -0
  54. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/environment.pickle +0 -0
  55. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/doctrees/index.doctree +0 -0
  56. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/.buildinfo +0 -0
  57. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/ack-messages.rst.txt +0 -0
  58. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/content-messages.rst.txt +0 -0
  59. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/intro.rst.txt +0 -0
  60. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/logon.rst.txt +0 -0
  61. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/protocol-reference.rst.txt +0 -0
  62. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/publishing.rst.txt +0 -0
  63. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/query-delimiters.rst.txt +0 -0
  64. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/query-subscribe.rst.txt +0 -0
  65. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/removing.rst.txt +0 -0
  66. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/chapters/utilities.rst.txt +0 -0
  67. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_sources/index.rst.txt +0 -0
  68. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/ajax-loader.gif +0 -0
  69. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/alabaster.css +0 -0
  70. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/basic.css +0 -0
  71. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/comment-bright.png +0 -0
  72. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/comment-close.png +0 -0
  73. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/comment.png +0 -0
  74. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/custom.css +0 -0
  75. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/doctools.js +0 -0
  76. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/down-pressed.png +0 -0
  77. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/down.png +0 -0
  78. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/file.png +0 -0
  79. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/flag_logo.png +0 -0
  80. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/flag_logo.svg +0 -0
  81. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/jquery-3.1.0.js +0 -0
  82. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/jquery.js +0 -0
  83. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/minus.png +0 -0
  84. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/plus.png +0 -0
  85. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/pygments.css +0 -0
  86. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/searchtools.js +0 -0
  87. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/underscore-1.3.1.js +0 -0
  88. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/underscore.js +0 -0
  89. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/up-pressed.png +0 -0
  90. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/up.png +0 -0
  91. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/_static/websupport.js +0 -0
  92. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/ack-messages.html +0 -0
  93. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/content-messages.html +0 -0
  94. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/intro.html +0 -0
  95. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/logon.html +0 -0
  96. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/protocol-reference.html +0 -0
  97. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/publishing.html +0 -0
  98. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/query-delimiters.html +0 -0
  99. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/query-subscribe.html +0 -0
  100. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/removing.html +0 -0
  101. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/chapters/utilities.html +0 -0
  102. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/genindex.html +0 -0
  103. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/index.html +0 -0
  104. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/objects.inv +0 -0
  105. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/search.html +0 -0
  106. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/command-reference/html/searchindex.js +0 -0
  107. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_sources/code.rst.txt +0 -0
  108. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_sources/index.rst.txt +0 -0
  109. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/ajax-loader.gif +0 -0
  110. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/basic.css +0 -0
  111. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/classic.css +0 -0
  112. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/comment-bright.png +0 -0
  113. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/comment-close.png +0 -0
  114. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/comment.png +0 -0
  115. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/default.css +0 -0
  116. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/doctools.js +0 -0
  117. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/down-pressed.png +0 -0
  118. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/down.png +0 -0
  119. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/file.png +0 -0
  120. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/jquery-3.1.0.js +0 -0
  121. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/jquery.js +0 -0
  122. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/minus.png +0 -0
  123. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/plus.png +0 -0
  124. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/pygments.css +0 -0
  125. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/searchtools.js +0 -0
  126. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/sidebar.js +0 -0
  127. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/underscore-1.3.1.js +0 -0
  128. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/underscore.js +0 -0
  129. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/up-pressed.png +0 -0
  130. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/up.png +0 -0
  131. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/_static/websupport.js +0 -0
  132. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/html/objects.inv +0 -0
  133. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/advanced-topics.doctree +0 -0
  134. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/cpp-compiler-list.doctree +0 -0
  135. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/cpp-feature-table.doctree +0 -0
  136. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/creating-commands.doctree +0 -0
  137. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/deltas.doctree +0 -0
  138. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/error-handling.doctree +0 -0
  139. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/exceptions.doctree +0 -0
  140. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/first-program.doctree +0 -0
  141. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/high-availability.doctree +0 -0
  142. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/installing.doctree +0 -0
  143. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/introduction.doctree +0 -0
  144. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/moving-from-python-lite.doctree +0 -0
  145. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/performance-tips.doctree +0 -0
  146. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/queues.doctree +0 -0
  147. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/sow.doctree +0 -0
  148. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/subscriptions.doctree +0 -0
  149. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/chapters/utilities.doctree +0 -0
  150. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/environment.pickle +0 -0
  151. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/doctrees/index.doctree +0 -0
  152. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/.buildinfo +0 -0
  153. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/caution.png +0 -0
  154. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/caution.svg +0 -0
  155. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/connection_string.svg +0 -0
  156. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/important.png +0 -0
  157. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/important.svg +0 -0
  158. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/tip.png +0 -0
  159. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/tip.svg +0 -0
  160. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_images/warning.png +0 -0
  161. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/advanced-topics.rst.txt +0 -0
  162. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/cpp-compiler-list.rst.txt +0 -0
  163. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/cpp-feature-table.rst.txt +0 -0
  164. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/creating-commands.rst.txt +0 -0
  165. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/deltas.rst.txt +0 -0
  166. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/error-handling.rst.txt +0 -0
  167. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/exceptions.rst.txt +0 -0
  168. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/first-program.rst.txt +0 -0
  169. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/high-availability.rst.txt +0 -0
  170. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/installing.rst.txt +0 -0
  171. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/introduction.rst.txt +0 -0
  172. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/moving-from-python-lite.rst.txt +0 -0
  173. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/performance-tips.rst.txt +0 -0
  174. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/queues.rst.txt +0 -0
  175. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/sow.rst.txt +0 -0
  176. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/subscriptions.rst.txt +0 -0
  177. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/chapters/utilities.rst.txt +0 -0
  178. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_sources/index.rst.txt +0 -0
  179. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/ajax-loader.gif +0 -0
  180. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/alabaster.css +0 -0
  181. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/basic.css +0 -0
  182. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/comment-bright.png +0 -0
  183. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/comment-close.png +0 -0
  184. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/comment.png +0 -0
  185. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/custom.css +0 -0
  186. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/doctools.js +0 -0
  187. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/down-pressed.png +0 -0
  188. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/down.png +0 -0
  189. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/file.png +0 -0
  190. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/flag_logo.png +0 -0
  191. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/flag_logo.svg +0 -0
  192. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/jquery-3.1.0.js +0 -0
  193. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/jquery.js +0 -0
  194. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/minus.png +0 -0
  195. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/plus.png +0 -0
  196. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/pygments.css +0 -0
  197. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/searchtools.js +0 -0
  198. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/underscore-1.3.1.js +0 -0
  199. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/underscore.js +0 -0
  200. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/up-pressed.png +0 -0
  201. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/up.png +0 -0
  202. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/_static/websupport.js +0 -0
  203. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/advanced-topics.html +0 -0
  204. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/cpp-compiler-list.html +0 -0
  205. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/cpp-feature-table.html +0 -0
  206. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/creating-commands.html +0 -0
  207. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/deltas.html +0 -0
  208. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/error-handling.html +0 -0
  209. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/exceptions.html +0 -0
  210. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/first-program.html +0 -0
  211. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/high-availability.html +0 -0
  212. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/installing.html +0 -0
  213. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/introduction.html +0 -0
  214. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/moving-from-python-lite.html +0 -0
  215. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/performance-tips.html +0 -0
  216. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/queues.html +0 -0
  217. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/sow.html +0 -0
  218. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/subscriptions.html +0 -0
  219. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/chapters/utilities.html +0 -0
  220. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/genindex.html +0 -0
  221. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/index.html +0 -0
  222. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/objects.inv +0 -0
  223. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/search.html +0 -0
  224. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python/html/searchindex.js +0 -0
  225. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/doctrees/chapters/crankitup.doctree +0 -0
  226. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/doctrees/chapters/equipment.doctree +0 -0
  227. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/doctrees/environment.pickle +0 -0
  228. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/doctrees/index.doctree +0 -0
  229. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/.buildinfo +0 -0
  230. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_sources/chapters/crankitup.rst.txt +0 -0
  231. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_sources/chapters/equipment.rst.txt +0 -0
  232. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_sources/index.rst.txt +0 -0
  233. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/ajax-loader.gif +0 -0
  234. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/alabaster.css +0 -0
  235. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/basic.css +0 -0
  236. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/comment-bright.png +0 -0
  237. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/comment-close.png +0 -0
  238. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/comment.png +0 -0
  239. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/custom.css +0 -0
  240. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/doctools.js +0 -0
  241. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/down-pressed.png +0 -0
  242. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/down.png +0 -0
  243. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/file.png +0 -0
  244. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/flag_logo.png +0 -0
  245. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/flag_logo.svg +0 -0
  246. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/jquery-3.1.0.js +0 -0
  247. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/jquery.js +0 -0
  248. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/minus.png +0 -0
  249. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/plus.png +0 -0
  250. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/pygments.css +0 -0
  251. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/searchtools.js +0 -0
  252. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/underscore-1.3.1.js +0 -0
  253. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/underscore.js +0 -0
  254. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/up-pressed.png +0 -0
  255. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/up.png +0 -0
  256. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/_static/websupport.js +0 -0
  257. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/chapters/crankitup.html +0 -0
  258. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/chapters/equipment.html +0 -0
  259. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/genindex.html +0 -0
  260. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/index.html +0 -0
  261. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/objects.inv +0 -0
  262. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/search.html +0 -0
  263. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/python-quickstart/html/searchindex.js +0 -0
  264. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/resources/custom.css +0 -0
  265. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/resources/flag_logo.svg +0 -0
  266. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/acks.doctree +0 -0
  267. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/actions.doctree +0 -0
  268. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/amps-statistics.doctree +0 -0
  269. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/amps_expressions.doctree +0 -0
  270. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/amps_functions.doctree +0 -0
  271. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/auxiliary_modules.doctree +0 -0
  272. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/config-file-shortcuts.doctree +0 -0
  273. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/conflated_topics.doctree +0 -0
  274. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/constructing-fields.doctree +0 -0
  275. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/daemon.doctree +0 -0
  276. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/delta.doctree +0 -0
  277. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/distribution.doctree +0 -0
  278. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/enrichment.doctree +0 -0
  279. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/events.doctree +0 -0
  280. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/file_format_versions.doctree +0 -0
  281. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/glossary.doctree +0 -0
  282. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/ha.doctree +0 -0
  283. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/installing_and_starting.doctree +0 -0
  284. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/intro.doctree +0 -0
  285. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/logging.doctree +0 -0
  286. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/messageTypes.doctree +0 -0
  287. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/monitoring.doctree +0 -0
  288. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/oof.doctree +0 -0
  289. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/operation.doctree +0 -0
  290. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/pub_sub.doctree +0 -0
  291. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/queues.doctree +0 -0
  292. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/replication.doctree +0 -0
  293. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/securing.doctree +0 -0
  294. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/sow.doctree +0 -0
  295. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/sow_queries.doctree +0 -0
  296. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/spark.doctree +0 -0
  297. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/transports.doctree +0 -0
  298. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/troubleshooting.doctree +0 -0
  299. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/txlog.doctree +0 -0
  300. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/usecases.doctree +0 -0
  301. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/utilities.doctree +0 -0
  302. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/chapters/views.doctree +0 -0
  303. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/environment.pickle +0 -0
  304. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/doctrees/index.doctree +0 -0
  305. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/.buildinfo +0 -0
  306. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/acks.rst.txt +0 -0
  307. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/actions.rst.txt +0 -0
  308. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/amps-statistics.rst.txt +0 -0
  309. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/amps_expressions.rst.txt +0 -0
  310. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/amps_functions.rst.txt +0 -0
  311. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/auxiliary_modules.rst.txt +0 -0
  312. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/config-file-shortcuts.rst.txt +0 -0
  313. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/conflated_topics.rst.txt +0 -0
  314. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/constructing-fields.rst.txt +0 -0
  315. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/daemon.rst.txt +0 -0
  316. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/delta.rst.txt +0 -0
  317. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/distribution.rst.txt +0 -0
  318. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/enrichment.rst.txt +0 -0
  319. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/events.rst.txt +0 -0
  320. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/file_format_versions.rst.txt +0 -0
  321. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/glossary.rst.txt +0 -0
  322. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/ha.rst.txt +0 -0
  323. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/installing_and_starting.rst.txt +0 -0
  324. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/intro.rst.txt +0 -0
  325. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/logging.rst.txt +0 -0
  326. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/messageTypes.rst.txt +0 -0
  327. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/monitoring.rst.txt +0 -0
  328. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/oof.rst.txt +0 -0
  329. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/operation.rst.txt +0 -0
  330. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/pub_sub.rst.txt +0 -0
  331. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/queues.rst.txt +0 -0
  332. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/replication.rst.txt +0 -0
  333. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/securing.rst.txt +0 -0
  334. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/sow.rst.txt +0 -0
  335. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/sow_queries.rst.txt +0 -0
  336. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/spark.rst.txt +0 -0
  337. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/transports.rst.txt +0 -0
  338. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/troubleshooting.rst.txt +0 -0
  339. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/txlog.rst.txt +0 -0
  340. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/usecases.rst.txt +0 -0
  341. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/utilities.rst.txt +0 -0
  342. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/chapters/views.rst.txt +0 -0
  343. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_sources/index.rst.txt +0 -0
  344. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/ajax-loader.gif +0 -0
  345. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/alabaster.css +0 -0
  346. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/basic.css +0 -0
  347. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/comment-bright.png +0 -0
  348. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/comment-close.png +0 -0
  349. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/comment.png +0 -0
  350. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/custom.css +0 -0
  351. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/doctools.js +0 -0
  352. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/down-pressed.png +0 -0
  353. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/down.png +0 -0
  354. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/file.png +0 -0
  355. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/flag_logo.png +0 -0
  356. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/flag_logo.svg +0 -0
  357. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/jquery-3.1.0.js +0 -0
  358. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/jquery.js +0 -0
  359. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/minus.png +0 -0
  360. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/plus.png +0 -0
  361. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/pygments.css +0 -0
  362. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/searchtools.js +0 -0
  363. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/underscore-1.3.1.js +0 -0
  364. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/underscore.js +0 -0
  365. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/up-pressed.png +0 -0
  366. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/up.png +0 -0
  367. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/_static/websupport.js +0 -0
  368. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/acks.html +0 -0
  369. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/actions.html +0 -0
  370. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/amps-statistics.html +0 -0
  371. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/amps_expressions.html +0 -0
  372. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/amps_functions.html +0 -0
  373. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/auxiliary_modules.html +0 -0
  374. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/config-file-shortcuts.html +0 -0
  375. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/conflated_topics.html +0 -0
  376. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/constructing-fields.html +0 -0
  377. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/daemon.html +0 -0
  378. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/delta.html +0 -0
  379. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/distribution.html +0 -0
  380. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/enrichment.html +0 -0
  381. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/events.html +0 -0
  382. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/file_format_versions.html +0 -0
  383. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/glossary.html +0 -0
  384. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/ha.html +0 -0
  385. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/installing_and_starting.html +0 -0
  386. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/intro.html +0 -0
  387. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/logging.html +0 -0
  388. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/messageTypes.html +0 -0
  389. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/monitoring.html +0 -0
  390. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/oof.html +0 -0
  391. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/operation.html +0 -0
  392. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/pub_sub.html +0 -0
  393. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/queues.html +0 -0
  394. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/replication.html +0 -0
  395. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/securing.html +0 -0
  396. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/sow.html +0 -0
  397. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/sow_queries.html +0 -0
  398. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/spark.html +0 -0
  399. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/transports.html +0 -0
  400. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/troubleshooting.html +0 -0
  401. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/txlog.html +0 -0
  402. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/usecases.html +0 -0
  403. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/utilities.html +0 -0
  404. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/chapters/views.html +0 -0
  405. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/genindex.html +0 -0
  406. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/index.html +0 -0
  407. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/objects.inv +0 -0
  408. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/search.html +0 -0
  409. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/docs/user-guide/html/searchindex.js +0 -0
  410. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_bookmarkstore.hpp +0 -0
  411. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_compat.h +0 -0
  412. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_defs.hpp +0 -0
  413. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_recoverypointadapter.hpp +0 -0
  414. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_shims.hpp +0 -0
  415. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_type_object.hpp +0 -0
  416. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/include/ampspy_types.hpp +0 -0
  417. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSConsolePublisher.py +0 -0
  418. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSConsoleSubscriber.py +0 -0
  419. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSFIXBuilderPublisher.py +0 -0
  420. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSFIXShredderSubscriber.py +0 -0
  421. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSNVFIXBuilderPublisher.py +0 -0
  422. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSNVFIXShredderSubscriber.py +0 -0
  423. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSPublishForReplay.py +0 -0
  424. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSQueueConsumer.py +0 -0
  425. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSQueuePublisher.py +0 -0
  426. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSSOWConsolePublisher.py +0 -0
  427. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSSOWConsoleSubscriber.py +0 -0
  428. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSSOWandSubscribeConsoleSubscriber.py +0 -0
  429. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSSOWandSubscribeWithOOF.py +0 -0
  430. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSSubscribeForReplay.py +0 -0
  431. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/AMPSUpdateForOOF.py +0 -0
  432. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/CompositeMessagePublisher.py +0 -0
  433. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/CompositeMessageSubscriber.py +0 -0
  434. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/RandomServerChooser.py +0 -0
  435. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/samples/sample.xml +0 -0
  436. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/ampspy_shims.cpp +0 -0
  437. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/ampspy_type_object.cpp +0 -0
  438. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/authenticator.cpp +0 -0
  439. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/bookmarkstore.cpp +0 -0
  440. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/client.cpp +0 -0
  441. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cmessagehandler.cpp +0 -0
  442. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/command.cpp +0 -0
  443. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/compositemessagebuilder.cpp +0 -0
  444. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/compositemessageparser.cpp +0 -0
  445. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/conflatingrecoverypointadapter.cpp +0 -0
  446. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/BookmarkStore.hpp +0 -0
  447. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/Buffer.hpp +0 -0
  448. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/CompositeMessageBuilder.hpp +0 -0
  449. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/CompositeMessageParser.hpp +0 -0
  450. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/DefaultServerChooser.hpp +0 -0
  451. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/HAClient.hpp +0 -0
  452. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/HAClientImpl.hpp +0 -0
  453. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/HybridPublishStore.hpp +0 -0
  454. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/LoggedBookmarkStore.hpp +0 -0
  455. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MMapBookmarkStore.hpp +0 -0
  456. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MemoryBookmarkStore.hpp +0 -0
  457. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MemoryPublishStore.hpp +0 -0
  458. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MemorySubscriptionManager.hpp +0 -0
  459. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/MessageRouter.hpp +0 -0
  460. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/PublishStore.hpp +0 -0
  461. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ReconnectDelayStrategy.hpp +0 -0
  462. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ReconnectDelayStrategyImpl.hpp +0 -0
  463. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/RecoveryPoint.hpp +0 -0
  464. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/RecoveryPointAdapter.hpp +0 -0
  465. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/RingBookmarkStore.hpp +0 -0
  466. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/SOWRecoveryPointAdapter.hpp +0 -0
  467. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ServerChooserImpl.hpp +0 -0
  468. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/amps_generated.h +0 -0
  469. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/amps_ssl.h +0 -0
  470. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ampsuri.h +0 -0
  471. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/ampsver.h.in +0 -0
  472. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/include/amps/constants.hpp +0 -0
  473. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/amps_protocol.c +0 -0
  474. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/amps_protocol_generated.h +0 -0
  475. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/client.c +0 -0
  476. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/makefile +0 -0
  477. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/message.c +0 -0
  478. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/message_generated.h +0 -0
  479. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/transports.c +0 -0
  480. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/cpp/src/uri.c +0 -0
  481. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/failedwritehandler.cpp +0 -0
  482. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/fixbuilder.cpp +0 -0
  483. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/fixshredder.cpp +0 -0
  484. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/fixshredder_docs.h +0 -0
  485. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/haclient.cpp +0 -0
  486. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/hybridpublishstore.cpp +0 -0
  487. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/hybridpublishstore_docs.h +0 -0
  488. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/memorybookmarkstore.cpp +0 -0
  489. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/memorybookmarkstore_docs.h +0 -0
  490. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/memorypublishstore.cpp +0 -0
  491. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/memorypublishstore_docs.h +0 -0
  492. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/message.cpp +0 -0
  493. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/message_docs.h +0 -0
  494. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/messagestream.cpp +0 -0
  495. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/messagestream_docs.h +0 -0
  496. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/mmapbookmarkstore.cpp +0 -0
  497. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/nvfixshredder.cpp +0 -0
  498. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/publishstore.cpp +0 -0
  499. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/raw_wrapper.cpp +0 -0
  500. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/reason.cpp +0 -0
  501. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/recoverypoint.cpp +0 -0
  502. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/recoverypointadapter.cpp +0 -0
  503. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/ringbookmarkstore.cpp +0 -0
  504. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/serverchooser.cpp +0 -0
  505. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/sowrecoverypointadapter.cpp +0 -0
  506. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/store.cpp +0 -0
  507. {amps-python-client-5.3.4.2 → amps-python-client-5.3.4.3}/src/versioninfo.cpp +0 -0
@@ -7,7 +7,7 @@
7
7
  <head>
8
8
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
9
9
 
10
- <title>Index &#8212; AMPS Python Client 5.3.4.2 documentation</title>
10
+ <title>Index &#8212; AMPS Python Client 5.3.4.3 documentation</title>
11
11
 
12
12
  <link rel="stylesheet" href="_static/classic.css" type="text/css" />
13
13
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -15,7 +15,7 @@
15
15
  <script type="text/javascript">
16
16
  var DOCUMENTATION_OPTIONS = {
17
17
  URL_ROOT: './',
18
- VERSION: '5.3.4.2',
18
+ VERSION: '5.3.4.3',
19
19
  COLLAPSE_INDEX: false,
20
20
  FILE_SUFFIX: '.html',
21
21
  HAS_SOURCE: true,
@@ -38,7 +38,7 @@
38
38
  <li class="right" >
39
39
  <a href="py-modindex.html" title="Python Module Index"
40
40
  >modules</a> |</li>
41
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
41
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
42
42
  </ul>
43
43
  </div>
44
44
 
@@ -1352,7 +1352,7 @@
1352
1352
  <li class="right" >
1353
1353
  <a href="py-modindex.html" title="Python Module Index"
1354
1354
  >modules</a> |</li>
1355
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
1355
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
1356
1356
  </ul>
1357
1357
  </div>
1358
1358
  <div class="footer" role="contentinfo">
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
8
 
9
- <title>AMPS Python Client Reference &#8212; AMPS Python Client 5.3.4.2 documentation</title>
9
+ <title>AMPS Python Client Reference &#8212; AMPS Python Client 5.3.4.3 documentation</title>
10
10
 
11
11
  <link rel="stylesheet" href="_static/classic.css" type="text/css" />
12
12
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -14,7 +14,7 @@
14
14
  <script type="text/javascript">
15
15
  var DOCUMENTATION_OPTIONS = {
16
16
  URL_ROOT: './',
17
- VERSION: '5.3.4.2',
17
+ VERSION: '5.3.4.3',
18
18
  COLLAPSE_INDEX: false,
19
19
  FILE_SUFFIX: '.html',
20
20
  HAS_SOURCE: true,
@@ -41,7 +41,7 @@
41
41
  <li class="right" >
42
42
  <a href="code.html" title="AMPS Module Reference"
43
43
  accesskey="N">next</a> |</li>
44
- <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
44
+ <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
45
45
  </ul>
46
46
  </div>
47
47
 
@@ -120,7 +120,7 @@ came with the download or the <a class="reference external" href="http://www.cra
120
120
  <li class="right" >
121
121
  <a href="code.html" title="AMPS Module Reference"
122
122
  >next</a> |</li>
123
- <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
123
+ <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
124
124
  </ul>
125
125
  </div>
126
126
  <div class="footer" role="contentinfo">
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
8
 
9
- <title>Python Module Index &#8212; AMPS Python Client 5.3.4.2 documentation</title>
9
+ <title>Python Module Index &#8212; AMPS Python Client 5.3.4.3 documentation</title>
10
10
 
11
11
  <link rel="stylesheet" href="_static/classic.css" type="text/css" />
12
12
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -14,7 +14,7 @@
14
14
  <script type="text/javascript">
15
15
  var DOCUMENTATION_OPTIONS = {
16
16
  URL_ROOT: './',
17
- VERSION: '5.3.4.2',
17
+ VERSION: '5.3.4.3',
18
18
  COLLAPSE_INDEX: false,
19
19
  FILE_SUFFIX: '.html',
20
20
  HAS_SOURCE: true,
@@ -44,7 +44,7 @@
44
44
  <li class="right" >
45
45
  <a href="#" title="Python Module Index"
46
46
  >modules</a> |</li>
47
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
47
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
48
48
  </ul>
49
49
  </div>
50
50
 
@@ -100,7 +100,7 @@
100
100
  <li class="right" >
101
101
  <a href="#" title="Python Module Index"
102
102
  >modules</a> |</li>
103
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
103
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
104
104
  </ul>
105
105
  </div>
106
106
  <div class="footer" role="contentinfo">
@@ -6,7 +6,7 @@
6
6
  <head>
7
7
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8
8
 
9
- <title>Search &#8212; AMPS Python Client 5.3.4.2 documentation</title>
9
+ <title>Search &#8212; AMPS Python Client 5.3.4.3 documentation</title>
10
10
 
11
11
  <link rel="stylesheet" href="_static/classic.css" type="text/css" />
12
12
  <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
@@ -14,7 +14,7 @@
14
14
  <script type="text/javascript">
15
15
  var DOCUMENTATION_OPTIONS = {
16
16
  URL_ROOT: './',
17
- VERSION: '5.3.4.2',
17
+ VERSION: '5.3.4.3',
18
18
  COLLAPSE_INDEX: false,
19
19
  FILE_SUFFIX: '.html',
20
20
  HAS_SOURCE: true,
@@ -45,7 +45,7 @@
45
45
  <li class="right" >
46
46
  <a href="py-modindex.html" title="Python Module Index"
47
47
  >modules</a> |</li>
48
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
48
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
49
49
  </ul>
50
50
  </div>
51
51
 
@@ -96,7 +96,7 @@
96
96
  <li class="right" >
97
97
  <a href="py-modindex.html" title="Python Module Index"
98
98
  >modules</a> |</li>
99
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.2 documentation</a> &#187;</li>
99
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.4.3 documentation</a> &#187;</li>
100
100
  </ul>
101
101
  </div>
102
102
  <div class="footer" role="contentinfo">
@@ -1 +1 @@
1
- Search.setIndex({docnames:["code","index"],envversion:51,filenames:["code.rst","index.rst"],objects:{"":{AMPS:[0,0,0,"-"]},"AMPS.Client":{Bookmarks:[0,2,1,""],ConnectionStateListener:[0,2,1,""],ack:[0,3,1,""],add_connection_state_listener:[0,3,1,""],add_message_handler:[0,3,1,""],allocateMessage:[0,3,1,""],allocate_message:[0,3,1,""],bookmark_subscribe:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],convert_version_to_number:[0,3,1,""],deltaPublish:[0,3,1,""],deltaSubscribe:[0,3,1,""],delta_publish:[0,3,1,""],delta_subscribe:[0,3,1,""],disconnect:[0,3,1,""],execute:[0,3,1,""],execute_async:[0,3,1,""],flush:[0,3,1,""],getName:[0,3,1,""],get_ack_batch_size:[0,3,1,""],get_ack_timeout:[0,3,1,""],get_auto_ack:[0,3,1,""],get_default_max_depth:[0,3,1,""],get_duplicate_message_handler:[0,3,1,""],get_error_on_publish_gap:[0,3,1,""],get_exception_listener:[0,3,1,""],get_logon_correlation_data:[0,3,1,""],get_name:[0,3,1,""],get_name_hash:[0,3,1,""],get_name_hash_value:[0,3,1,""],get_retry_on_disconnect:[0,3,1,""],get_server_version:[0,3,1,""],get_server_version_info:[0,3,1,""],get_unpersisted_count:[0,3,1,""],get_uri:[0,3,1,""],logon:[0,3,1,""],name:[0,3,1,""],publish:[0,3,1,""],publish_flush:[0,3,1,""],remove_connection_state_listener:[0,3,1,""],remove_message_handler:[0,3,1,""],send:[0,3,1,""],setDisconnectHandler:[0,3,1,""],setExceptionListener:[0,3,1,""],setName:[0,3,1,""],setOnDisconnectHandler:[0,3,1,""],setUnhandledMessageHandler:[0,3,1,""],set_ack_batch_size:[0,3,1,""],set_ack_timeout:[0,3,1,""],set_auto_ack:[0,3,1,""],set_bookmark_store:[0,3,1,""],set_default_max_depth:[0,3,1,""],set_disconnect_handler:[0,3,1,""],set_duplicate_message_handler:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_exception_listener:[0,3,1,""],set_failed_write_handler:[0,3,1,""],set_global_command_type_message_handler:[0,3,1,""],set_heartbeat:[0,3,1,""],set_last_chance_message_handler:[0,3,1,""],set_logon_correlation_data:[0,3,1,""],set_name:[0,3,1,""],set_publish_store:[0,3,1,""],set_retry_on_disconnect:[0,3,1,""],set_thread_created_callback:[0,3,1,""],set_transport_filter:[0,3,1,""],set_unhandled_message_handler:[0,3,1,""],sow:[0,3,1,""],sowAndDeltaSubscribe:[0,3,1,""],sowAndSubscribe:[0,3,1,""],sowDelete:[0,3,1,""],sow_and_delta_subscribe:[0,3,1,""],sow_and_subscribe:[0,3,1,""],sow_delete:[0,3,1,""],sow_delete_by_data:[0,3,1,""],sow_delete_by_keys:[0,3,1,""],start_timer:[0,3,1,""],stop_timer:[0,3,1,""],subscribe:[0,3,1,""],unsubscribe:[0,3,1,""]},"AMPS.Command":{add_ack_type:[0,3,1,""],get_ack_type:[0,3,1,""],get_ack_type_enum:[0,3,1,""],get_sequence:[0,3,1,""],reset:[0,3,1,""],set_ack_type:[0,3,1,""],set_ack_type_enum:[0,3,1,""],set_batch_size:[0,3,1,""],set_bookmark:[0,3,1,""],set_command_id:[0,3,1,""],set_correlation_id:[0,3,1,""],set_data:[0,3,1,""],set_expiration:[0,3,1,""],set_filter:[0,3,1,""],set_options:[0,3,1,""],set_order_by:[0,3,1,""],set_query_id:[0,3,1,""],set_sequence:[0,3,1,""],set_sow_key:[0,3,1,""],set_sow_keys:[0,3,1,""],set_sub_id:[0,3,1,""],set_timeout:[0,3,1,""],set_top_n:[0,3,1,""],set_topic:[0,3,1,""]},"AMPS.CompositeMessageBuilder":{append:[0,3,1,""],clear:[0,3,1,""],get_data:[0,3,1,""]},"AMPS.CompositeMessageParser":{get_part:[0,3,1,""],get_part_raw:[0,3,1,""],parse:[0,3,1,""],size:[0,3,1,""]},"AMPS.ConflatingRecoveryPointAdapter":{close:[0,3,1,""],next:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],update:[0,3,1,""]},"AMPS.DefaultAuthenticator":{authenticate:[0,3,1,""],completed:[0,3,1,""],retry:[0,3,1,""]},"AMPS.DefaultServerChooser":{add:[0,3,1,""],add_all:[0,3,1,""],get_current_authenticator:[0,3,1,""],get_current_uri:[0,3,1,""],get_error:[0,3,1,""],next:[0,3,1,""],report_failure:[0,3,1,""],report_success:[0,3,1,""]},"AMPS.ExponentialDelayStrategy":{get_connect_wait_duration:[0,3,1,""],reset:[0,3,1,""]},"AMPS.FIXBuilder":{append:[0,3,1,""],get_string:[0,3,1,""],reset:[0,3,1,""]},"AMPS.FIXShredder":{to_map:[0,3,1,""]},"AMPS.FixedDelayStrategy":{get_connect_wait_duration:[0,3,1,""],reset:[0,3,1,""]},"AMPS.HAClient":{connect:[0,3,1,""],connect_and_logon:[0,3,1,""],discard:[0,3,1,""],get_default_resubscription_timeout:[0,3,1,""],get_logon_options:[0,3,1,""],get_most_recent:[0,3,1,""],get_reconnect_delay_strategy:[0,3,1,""],get_resubscription_timeout:[0,3,1,""],get_server_chooser:[0,3,1,""],logon:[0,3,1,""],prune_store:[0,3,1,""],set_default_resubscription_timeout:[0,3,1,""],set_failed_resubscribe_handler:[0,3,1,""],set_logon_options:[0,3,1,""],set_reconnect_delay:[0,3,1,""],set_reconnect_delay_strategy:[0,3,1,""],set_resubscription_timeout:[0,3,1,""],set_server_chooser:[0,3,1,""],set_timeout:[0,3,1,""]},"AMPS.HybridPublishStore":{get_unpersisted_count:[0,3,1,""],set_resize_handler:[0,3,1,""]},"AMPS.MMapBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.MemoryBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.MemoryPublishStore":{get_error_on_publish_gap:[0,3,1,""],get_unpersisted_count:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_resize_handler:[0,3,1,""]},"AMPS.Message":{Options:[0,2,1,""],ack:[0,3,1,""],getAckType:[0,3,1,""],getBatchSize:[0,3,1,""],getBookmark:[0,3,1,""],getClientName:[0,3,1,""],getCommand:[0,3,1,""],getCommandId:[0,3,1,""],getCorrelationId:[0,3,1,""],getData:[0,3,1,""],getExpiration:[0,3,1,""],getFilter:[0,3,1,""],getGroupSequenceNumber:[0,3,1,""],getHeartbeat:[0,3,1,""],getLeasePeriod:[0,3,1,""],getMatches:[0,3,1,""],getMessageLength:[0,3,1,""],getMessageType:[0,3,1,""],getOptions:[0,3,1,""],getOrderBy:[0,3,1,""],getPassword:[0,3,1,""],getQueryID:[0,3,1,""],getReason:[0,3,1,""],getRecordsInserted:[0,3,1,""],getRecordsReturned:[0,3,1,""],getRecordsUpdated:[0,3,1,""],getSequence:[0,3,1,""],getSowDelete:[0,3,1,""],getSowKey:[0,3,1,""],getSowKeys:[0,3,1,""],getStatus:[0,3,1,""],getSubscriptionId:[0,3,1,""],getSubscriptionIds:[0,3,1,""],getTimeoutInterval:[0,3,1,""],getTimestamp:[0,3,1,""],getTopNRecordsReturned:[0,3,1,""],getTopic:[0,3,1,""],getTopicMatches:[0,3,1,""],getUserId:[0,3,1,""],getVersion:[0,3,1,""],get_ack_type:[0,3,1,""],get_batch_size:[0,3,1,""],get_bookmark:[0,3,1,""],get_bookmark_seq_no:[0,3,1,""],get_client_name:[0,3,1,""],get_command:[0,3,1,""],get_command_id:[0,3,1,""],get_correlation_id:[0,3,1,""],get_data:[0,3,1,""],get_data_raw:[0,3,1,""],get_expiration:[0,3,1,""],get_filter:[0,3,1,""],get_group_seq_no:[0,3,1,""],get_heartbeat:[0,3,1,""],get_lease_period:[0,3,1,""],get_matches:[0,3,1,""],get_message_size:[0,3,1,""],get_message_type:[0,3,1,""],get_options:[0,3,1,""],get_order_by:[0,3,1,""],get_password:[0,3,1,""],get_query_id:[0,3,1,""],get_reason:[0,3,1,""],get_records_inserted:[0,3,1,""],get_records_returned:[0,3,1,""],get_records_updated:[0,3,1,""],get_sequence:[0,3,1,""],get_sow_deleted:[0,3,1,""],get_sow_key:[0,3,1,""],get_sow_keys:[0,3,1,""],get_status:[0,3,1,""],get_sub_id:[0,3,1,""],get_sub_ids:[0,3,1,""],get_timeout_interval:[0,3,1,""],get_timestamp:[0,3,1,""],get_top_n:[0,3,1,""],get_topic:[0,3,1,""],get_topic_matches:[0,3,1,""],get_user_id:[0,3,1,""],get_version:[0,3,1,""],reset:[0,3,1,""],setAckType:[0,3,1,""],setBatchSize:[0,3,1,""],setBookmark:[0,3,1,""],setClientName:[0,3,1,""],setCommand:[0,3,1,""],setCommandId:[0,3,1,""],setCorrelationId:[0,3,1,""],setData:[0,3,1,""],setExpiration:[0,3,1,""],setFilter:[0,3,1,""],setGroupSequenceNumber:[0,3,1,""],setHeartbeat:[0,3,1,""],setLeasePeriod:[0,3,1,""],setMatches:[0,3,1,""],setMessageLength:[0,3,1,""],setMessageType:[0,3,1,""],setOptions:[0,3,1,""],setOrderBy:[0,3,1,""],setPassword:[0,3,1,""],setQueryID:[0,3,1,""],setReason:[0,3,1,""],setRecordsInserted:[0,3,1,""],setRecordsReturned:[0,3,1,""],setRecordsUpdated:[0,3,1,""],setSequence:[0,3,1,""],setSowDelete:[0,3,1,""],setSowKey:[0,3,1,""],setSowKeys:[0,3,1,""],setStatus:[0,3,1,""],setSubscriptionId:[0,3,1,""],setSubscriptionIds:[0,3,1,""],setTimeoutInterval:[0,3,1,""],setTimestamp:[0,3,1,""],setTopNRecordsReturned:[0,3,1,""],setTopic:[0,3,1,""],setTopicMatches:[0,3,1,""],setUserId:[0,3,1,""],setVersion:[0,3,1,""],set_ack_type:[0,3,1,""],set_batch_size:[0,3,1,""],set_bookmark:[0,3,1,""],set_client_name:[0,3,1,""],set_command:[0,3,1,""],set_command_id:[0,3,1,""],set_correlation_id:[0,3,1,""],set_data:[0,3,1,""],set_expiration:[0,3,1,""],set_filter:[0,3,1,""],set_group_seq_no:[0,3,1,""],set_heartbeat:[0,3,1,""],set_lease_period:[0,3,1,""],set_matches:[0,3,1,""],set_message_size:[0,3,1,""],set_message_type:[0,3,1,""],set_options:[0,3,1,""],set_order_by:[0,3,1,""],set_password:[0,3,1,""],set_query_id:[0,3,1,""],set_reason:[0,3,1,""],set_records_inserted:[0,3,1,""],set_records_returned:[0,3,1,""],set_records_updated:[0,3,1,""],set_sequence:[0,3,1,""],set_sow_deleted:[0,3,1,""],set_sow_key:[0,3,1,""],set_sow_keys:[0,3,1,""],set_status:[0,3,1,""],set_sub_id:[0,3,1,""],set_sub_ids:[0,3,1,""],set_timeout_interval:[0,3,1,""],set_timestamp:[0,3,1,""],set_top_n:[0,3,1,""],set_topic:[0,3,1,""],set_topic_matches:[0,3,1,""],set_user_id:[0,3,1,""],set_version:[0,3,1,""]},"AMPS.Message.Options":{set_OOF:[0,3,1,""],set_cancel:[0,3,1,""],set_conflation:[0,3,1,""],set_conflation_key:[0,3,1,""],set_fully_durable:[0,3,1,""],set_grouping:[0,3,1,""],set_live:[0,3,1,""],set_max_backlog:[0,3,1,""],set_no_empties:[0,3,1,""],set_no_sowkey:[0,3,1,""],set_none:[0,3,1,""],set_pause:[0,3,1,""],set_projection:[0,3,1,""],set_rate:[0,3,1,""],set_rate_max_gap:[0,3,1,""],set_replace:[0,3,1,""],set_resume:[0,3,1,""],set_send_keys:[0,3,1,""],set_skip_n:[0,3,1,""],set_timestamp:[0,3,1,""],set_top_n:[0,3,1,""]},"AMPS.MessageStream":{close:[0,3,1,""],conflate:[0,3,1,""],get_depth:[0,3,1,""],get_max_depth:[0,3,1,""],max_depth:[0,3,1,""],timeout:[0,3,1,""]},"AMPS.NVFIXBuilder":{append:[0,3,1,""],get_string:[0,3,1,""],reset:[0,3,1,""]},"AMPS.NVFIXShredder":{to_map:[0,3,1,""]},"AMPS.PublishStore":{get_error_on_publish_gap:[0,3,1,""],get_unpersisted_count:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_resize_handler:[0,3,1,""],truncate_on_close:[0,3,1,""]},"AMPS.RecoveryPoint":{get_bookmark:[0,3,1,""],get_sub_id:[0,3,1,""]},"AMPS.RingBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.SOWRecoveryPointAdapter":{close:[0,3,1,""],get_exception_listener:[0,3,1,""],next:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],set_exception_listener:[0,3,1,""],update:[0,3,1,""]},"AMPS.VersionInfo":{get_old_style_version:[0,3,1,""],get_version_number:[0,3,1,""],get_version_string:[0,3,1,""],set_version:[0,3,1,""]},AMPS:{AMPSException:[0,1,1,""],AlreadyConnected:[0,1,1,""],AlreadyConnectedException:[0,1,1,""],AuthenticationError:[0,1,1,""],AuthenticationException:[0,1,1,""],BadFilter:[0,1,1,""],BadFilterException:[0,1,1,""],BadRegexTopic:[0,1,1,""],BadRegexTopicException:[0,1,1,""],BadSowKeyException:[0,1,1,""],CMessageHandler:[0,2,1,""],Client:[0,2,1,""],ClientNameInUse:[0,1,1,""],Command:[0,2,1,""],CommandError:[0,1,1,""],CommandException:[0,1,1,""],CommandTimedOut:[0,1,1,""],CommandTypeError:[0,1,1,""],CompositeMessageBuilder:[0,2,1,""],CompositeMessageParser:[0,2,1,""],ConflatingRecoveryPointAdapter:[0,2,1,""],ConnectionError:[0,1,1,""],ConnectionException:[0,1,1,""],ConnectionRefused:[0,1,1,""],ConnectionRefusedException:[0,1,1,""],CorruptedRecord:[0,1,1,""],DefaultAuthenticator:[0,2,1,""],DefaultServerChooser:[0,2,1,""],Disconnected:[0,1,1,""],DisconnectedException:[0,1,1,""],DuplicateLogonException:[0,1,1,""],ExponentialDelayStrategy:[0,2,1,""],FIXBuilder:[0,2,1,""],FIXShredder:[0,2,1,""],FixedDelayStrategy:[0,2,1,""],HAClient:[0,2,1,""],HybridPublishStore:[0,2,1,""],InvalidBookmarkException:[0,1,1,""],InvalidMessageTypeOptions:[0,1,1,""],InvalidOptionsException:[0,1,1,""],InvalidOrderByException:[0,1,1,""],InvalidSubIdException:[0,1,1,""],InvalidTopicError:[0,1,1,""],InvalidTopicException:[0,1,1,""],InvalidTransportOptions:[0,1,1,""],InvalidTransportOptionsException:[0,1,1,""],InvalidUriException:[0,1,1,""],InvalidUriFormat:[0,1,1,""],LocalStorageError:[0,1,1,""],LogonRequiredException:[0,1,1,""],MMapBookmarkStore:[0,2,1,""],MemoryBookmarkStore:[0,2,1,""],MemoryPublishStore:[0,2,1,""],Message:[0,2,1,""],MessageStream:[0,2,1,""],MessageTypeError:[0,1,1,""],MessageTypeException:[0,1,1,""],MessageTypeNotFound:[0,1,1,""],MissingFieldsException:[0,1,1,""],NVFIXBuilder:[0,2,1,""],NVFIXShredder:[0,2,1,""],NameInUseException:[0,1,1,""],NotEntitledError:[0,1,1,""],NotEntitledException:[0,1,1,""],PublishException:[0,1,1,""],PublishStore:[0,2,1,""],PublishStoreGapException:[0,1,1,""],Reason:[0,2,1,""],RecoveryPoint:[0,2,1,""],RetryOperation:[0,1,1,""],RetryOperationException:[0,1,1,""],RingBookmarkStore:[0,2,1,""],SOWRecoveryPointAdapter:[0,2,1,""],Store:[0,2,1,""],StoreException:[0,1,1,""],StreamError:[0,1,1,""],StreamException:[0,1,1,""],SubidInUseException:[0,1,1,""],SubscriptionAlreadyExists:[0,1,1,""],SubscriptionAlreadyExistsException:[0,1,1,""],TimedOut:[0,1,1,""],TimedOutException:[0,1,1,""],TransportError:[0,1,1,""],TransportException:[0,1,1,""],TransportNotFound:[0,1,1,""],TransportTypeException:[0,1,1,""],UnknownError:[0,1,1,""],UnknownException:[0,1,1,""],UsageException:[0,1,1,""],VersionInfo:[0,2,1,""],ssl_init:[0,4,1,""],ssl_load_verify_locations:[0,4,1,""],ssl_set_verify:[0,4,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","exception","Python exception"],"2":["py","class","Python class"],"3":["py","method","Python method"],"4":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:exception","2":"py:class","3":"py:method","4":"py:function"},terms:{"100u":0,"10m":0,"200m":0,"250m":0,"30s":0,"400m":0,"60east":[0,1],"800m":0,"boolean":0,"byte":0,"case":0,"class":0,"const":0,"default":0,"enum":0,"export":0,"final":0,"function":0,"import":0,"int":0,"new":0,"return":0,"short":0,"throw":0,"true":0,"try":0,"void":0,"while":0,For:[0,1],Not:0,One:0,The:0,There:0,These:1,Use:0,Used:0,Will:0,With:0,__deepcopy__:0,abandon:0,abl:0,about:0,absorb:0,accept:0,access:0,accord:0,ack:0,ack_confl:0,ack_typ:0,ackmessag:0,acknowledg:0,acktyp:0,across:0,activ:0,actual:0,adapt:0,add:0,add_ack_typ:0,add_al:0,add_connection_state_listen:0,add_message_handl:0,adding:0,addit:0,address:0,advanc:0,affect:0,after:0,against:0,aggreg:0,all:0,alloc:0,allocate_messag:0,allocatemessag:0,allow:0,alreadi:0,alreadyconnect:0,alreadyconnectedexcept:0,alreadyconnectedexcpet:0,also:0,although:0,alwai:0,amessag:0,amount:0,ampsexcept:0,ampspi:0,ani:0,anoth:0,api:0,appear:0,append:0,appli:0,applic:0,approach:0,appropri:0,argument:0,arriv:0,asc:0,assign:0,associ:0,assum:0,asynchron:0,attempt:0,attemptsmultipl:0,authent:0,authenticationerror:0,authenticationexcept:0,auto:0,automat:0,avail:0,avoid:0,await:0,back:0,background:0,backlog:0,backoff:0,backoff_expon:0,badfilt:0,badfilterexcept:0,badregextop:0,badregextopicexcept:0,badsowkeyexcept:0,base64:0,base:0,batch:0,batch_siz:0,batchsiz:0,becaus:0,becom:0,been:0,befor:0,begin:0,behavior:0,being:0,below:0,between:0,block:0,bodi:0,bookmark:0,bookmark_index:0,bookmark_stor:0,bookmark_subscrib:0,bookmarkstor:0,bool:0,both:0,bracket:0,buffer:0,build:0,bypass:0,ca_fil:0,ca_path:0,calcul:0,call:0,callabl:0,caller:0,came:1,can:0,cancel:0,capac:0,cdll:0,certif:0,chang:0,charact:0,check:0,choos:0,chooser:0,chosen:0,chr:0,cid:0,clariti:0,claus:0,clear:0,client:0,client_disconnect_handl:0,client_nam:0,clientdisconnecthandl:0,clientnam:0,clientnameinus:0,close:0,cmd:0,cmessagehandl:0,come:0,comma:0,command:0,command_id:0,commanderror:0,commandexcept:0,commandtimedout:0,commandtypeerror:0,commun:0,compil:0,complet:0,composit:0,compositemessagebuild:0,compositemessagepars:0,configur:0,conflat:0,conflatingrecoverypointadapt:0,conflation_kei:0,connect:0,connect_and_logon:0,connectionerror:0,connectionexcept:0,connectioninfo:0,connectionrefus:0,connectionrefusedexcept:0,connectionstatelisten:0,consecut:0,consid:0,consist:0,constant:0,construct:0,constructor:0,consum:0,contain:0,content:[0,1],context:0,continu:0,control:0,conveni:0,convert:0,convert_version_to_numb:0,cookbook:0,copi:0,correl:0,correlation_id:0,correspond:0,corruptedrecord:0,could:0,count:0,creat:0,credenti:0,ctype:0,current:0,custom:0,data:0,deal:0,deem:0,def:0,defaultauthent:0,defaultserverchoos:0,defin:0,definit:0,del:0,delai:0,deleg:0,delet:0,delimit:0,deliv:0,delta:0,delta_publish:0,delta_subscrib:0,deltapublish:0,deltasubscrib:0,depend:0,deprec:0,depth:0,deriv:0,desc:0,describ:0,design:0,destin:0,detail:[0,1],detect:0,determin:0,develop:[0,1],dict:0,dictionari:0,dies:0,differ:0,digit:0,directli:0,directori:0,disabl:0,discard:0,discard_messag:0,disconnect:0,disconnectedexcept:0,disconnectexcept:0,disconnecthandl:0,disk:0,dll:0,dllpath:0,doe:0,dot:0,download:1,due:0,duplic:0,duplicatelogonexcept:0,dure:0,each:0,eas:0,easili:0,effect:0,effici:0,either:0,empti:0,enabl:0,encod:0,end:0,enforc:0,enough:0,ensur:0,entir:0,entitl:0,entri:0,epoch:0,equival:0,error:0,error_on_publish_gap:0,establish:0,etc:0,event:0,everi:0,exampl:0,exce:0,exceed:0,except:0,exception_listen:0,execut:0,execute_async:0,executeasync:0,exist:0,exit:0,expect:0,expir:0,explicit:0,expon:0,exponenti:0,exponentialdelaystrategi:0,express:0,extern:0,fail:0,failedwritehandl:0,failov:0,failur:0,fals:0,faq:0,field:0,file:0,filenam:0,fill:0,filter:0,find:0,finish:0,first:0,fix:0,fixbuild:0,fixeddelaystrategi:0,fixshredd:0,flexibl:0,flush:0,focu:0,follow:0,forc:0,format:0,forward:0,frame:0,free:0,from:0,full:0,fully_dur:0,further:0,gap:0,gener:0,get:0,get_ack_batch_s:0,get_ack_timeout:0,get_ack_typ:0,get_ack_type_enum:0,get_auto_ack:0,get_batch_s:0,get_bookmark:0,get_bookmark_seq_no:0,get_client_nam:0,get_command:0,get_command_id:0,get_connect_wait_dur:0,get_correlation_id:0,get_current_authent:0,get_current_uri:0,get_data:0,get_data_raw:0,get_default_max_depth:0,get_default_resubscription_timeout:0,get_depth:0,get_duplicate_message_handl:0,get_error:0,get_error_on_publish_gap:0,get_exception_listen:0,get_expir:0,get_filt:0,get_group_seq_no:0,get_heartbeat:0,get_lease_period:0,get_logon_correlation_data:0,get_logon_opt:0,get_match:0,get_max_depth:0,get_message_s:0,get_message_typ:0,get_most_rec:0,get_nam:0,get_name_hash:0,get_name_hash_valu:0,get_old_style_vers:0,get_oldest_bookmark_seq:0,get_opt:0,get_order_bi:0,get_part:0,get_part_raw:0,get_password:0,get_query_id:0,get_reason:0,get_reconnect_delay_strategi:0,get_records_insert:0,get_records_return:0,get_records_upd:0,get_resubscription_timeout:0,get_retry_on_disconnect:0,get_sequ:0,get_server_choos:0,get_server_vers:0,get_server_version_info:0,get_sow_delet:0,get_sow_kei:0,get_statu:0,get_str:0,get_sub_id:0,get_timeout_interv:0,get_timestamp:0,get_top:0,get_top_n:0,get_topic_match:0,get_unpersisted_count:0,get_uri:0,get_user_id:0,get_vers:0,get_version_numb:0,get_version_str:0,getacktyp:0,getbatchs:0,getbookmark:0,getclientnam:0,getcommand:0,getcommandid:0,getcorrelationid:0,getdata:0,getexpir:0,getfilt:0,getgroupsequencenumb:0,getheartbeat:0,getleaseperiod:0,getmatch:0,getmessagelength:0,getmessagetyp:0,getnam:0,getopt:0,getorderbi:0,getpassword:0,getqueryid:0,getreason:0,getrecordsinsert:0,getrecordsreturn:0,getrecordsupd:0,getsequ:0,getsowdelet:0,getsowkei:0,getstatu:0,getsubscriptionid:0,gettimeoutinterv:0,gettimestamp:0,gettop:0,gettopicmatch:0,gettopnrecordsreturn:0,getuserid:0,getvers:0,give:0,given:0,global:0,grant:0,greater:0,group:0,group_begin:0,group_end:0,group_seq_no:0,guarante:0,guid:[0,1],haclient:0,hand:0,handl:0,handler:0,hang:0,has:0,hash:0,have:0,header:0,heartbeat:0,held:0,help:0,helper:0,higher:0,highli:0,histor:0,histori:0,host:0,hostnam:0,how:0,howev:0,human:0,hybridpublishstor:0,ident:0,identifi:0,ignor:0,implement:0,improp:0,improperli:0,includ:0,incom:0,incorrectli:0,indefinit:0,index:[0,1],indic:0,inform:0,infrastructur:0,initi:0,initial_delai:0,instal:0,instanc:0,instead:0,integ:0,intend:0,interfac:0,intern:0,interpret:0,interv:0,interval_second:0,intrepret:0,introduct:1,invalid:0,invalidbookmarkexcept:0,invalidmessagetypeopt:0,invalidoptionsexcept:0,invalidorderbyexcept:0,invalidsubidexcept:0,invalidtopicerror:0,invalidtopicexcept:0,invalidtransportopt:0,invalidtransportoptionsexcept:0,invaliduriexcept:0,invaliduriformat:0,invoc:0,invok:0,is_discard:0,is_subscrib:0,issu:0,item:0,iter:0,itself:0,jitter:0,journal:0,json:0,just:0,keep:0,kei:0,know:0,last:0,lease_period:0,legaci:0,length:0,librari:[0,1],like:0,likewis:0,limit:0,list:0,listen:0,listener_cal:0,liter:0,live:0,load:0,local:0,localstorageerror:0,locat:0,lock:0,log:0,logon:0,logoncorrelationdata:0,logonrequiredexcept:0,longer:0,look:0,loss:0,made:0,mai:0,maintain:0,mainten:0,major:0,make:0,manag:0,manner:0,map:0,mark:0,match:0,max:0,max_backlog:0,max_depth:0,maxdepth:0,maximum:0,maximum_delai:0,maximum_retry_tim:0,mean:0,meaning:0,measur:0,memori:0,memorybookmarkstor:0,memorypublishstor:0,mesag:0,messag:0,message_handl:0,message_s:0,message_typ:0,messagehandl:0,messagehandlerfunc:0,messagestream:0,messagetypeerror:0,messagetypeexcept:0,messagetypenotfound:0,method:0,might:0,milli:0,millisecond:0,millsecond:0,minim:0,minor:0,miss:0,missingfieldsexcept:0,mmapbookmarkstor:0,modifi:0,modul:1,monitor:0,more:0,most:0,most_rec:0,multipl:0,multipli:0,must:0,my_amps_top:0,my_cool_top:0,my_dll:0,my_message_handl:0,mymessagehandl:0,mysowtop:0,name:0,nameinuseexcept:0,necessari:0,need:0,negoti:0,network:0,newli:0,newlin:0,next:0,no_empti:0,no_sowkei:0,no_stor:0,none:0,nonrespons:0,normal:0,note:0,notentitlederror:0,notentitledexcept:0,notic:0,now:0,number:0,numer:0,nvfix:0,nvfixbuild:0,nvfixshredd:0,object:0,obsolet:0,occur:0,off:0,offset:0,oldest:0,omit:0,on_messag:0,onc:0,one:0,onli:0,onto:0,oof:0,oof_en:0,opaqu:0,open:0,openssl:0,oper:0,option:0,optionsand:0,order:0,order_bi:0,orderbi:0,orderid:0,ordertimestamp:0,origin:0,other:0,otherwis:0,ought:0,out:0,outgo:0,output:0,over:0,overrid:0,overview:1,page:1,param:0,paramet:0,pars:0,part:0,particular:0,pass:0,password:0,patch:0,path:0,paus:0,peer:0,pem:0,pend:0,per:0,perform:0,persist:0,persisted_index:0,place:0,point:0,popul:0,port:0,potenti:0,practic:0,present:0,prevent:0,previou:0,previous:0,print:0,printfailedwrit:0,process:0,processedenum:0,produc:0,program:0,project:0,proper:0,properti:0,protocol:0,provid:[0,1],prune:0,prune_stor:0,publish:0,publish_flush:0,publish_stor:0,publishexcept:0,publishstor:0,publishstoregapexcept:0,purg:0,purge_sub_id:0,purpos:0,pushback:0,python:0,queri:0,query_id:0,queu:0,queue:0,rais:0,rare:0,rate:0,rate_max_gap:0,rather:0,reach:0,read:0,readabl:0,reason:0,receiv:0,recent:0,recommend:0,reconnect:0,reconnectdelai:0,reconnectdelaystrategi:0,record:0,records_insert:0,records_return:0,records_upd:0,recov:0,recoveri:0,recovery_point:0,recoverypoint:0,recoverypointadapt:0,reduc:0,refus:0,regard:0,regardless:0,region:0,regular:0,relat:0,relationship:0,remain:0,remov:0,remove_connection_state_listen:0,remove_message_handl:0,replac:0,replai:0,replic:0,report:0,report_failur:0,report_success:0,repres:0,represent:0,reprocess:0,request:0,requir:0,reset:0,resiz:0,resourc:0,respond:0,respons:0,restart:0,restrict:0,resubscrib:0,result:0,resum:0,retri:0,retriev:0,retryoper:0,retryoperationexcept:0,reus:0,ringbookmarkstor:0,risk:0,run:0,same:0,save:0,scenario:0,search:1,second:0,section:0,see:[0,1],seen:0,self:0,send:0,send_empti:0,send_kei:0,sent:0,separ:0,sequenc:0,server:0,serverchoos:0,set:0,set_ack_batch_s:0,set_ack_timeout:0,set_ack_typ:0,set_ack_type_enum:0,set_auto_ack:0,set_batch_s:0,set_bookmark:0,set_bookmark_stor:0,set_cancel:0,set_client_nam:0,set_command:0,set_command_id:0,set_confl:0,set_conflation_kei:0,set_correlation_id:0,set_data:0,set_default_max_depth:0,set_default_resubscription_timeout:0,set_disconnect_handl:0,set_duplicate_message_handl:0,set_error_on_publish_gap:0,set_exception_listen:0,set_expir:0,set_failed_resubscribe_handl:0,set_failed_write_handl:0,set_filt:0,set_fully_dur:0,set_global_command_type_message_handl:0,set_group:0,set_group_seq_no:0,set_heartbeat:0,set_last_chance_message_handl:0,set_lease_period:0,set_liv:0,set_logon_correlation_data:0,set_logon_opt:0,set_match:0,set_max_backlog:0,set_message_s:0,set_message_typ:0,set_nam:0,set_no_empti:0,set_no_sowkei:0,set_non:0,set_oof:0,set_opt:0,set_order_bi:0,set_password:0,set_paus:0,set_project:0,set_publish_stor:0,set_query_id:0,set_rat:0,set_rate_max_gap:0,set_reason:0,set_reconnect_delai:0,set_reconnect_delay_strategi:0,set_records_insert:0,set_records_return:0,set_records_upd:0,set_replac:0,set_resize_handl:0,set_resubscription_timeout:0,set_resum:0,set_retry_on_disconnect:0,set_send_kei:0,set_sequ:0,set_server_choos:0,set_server_vers:0,set_skip_n:0,set_sow_delet:0,set_sow_kei:0,set_statu:0,set_sub_id:0,set_thread_created_callback:0,set_timeout:0,set_timeout_interv:0,set_timestamp:0,set_top:0,set_top_n:0,set_topic_match:0,set_transport_filt:0,set_unhandled_message_handl:0,set_user_id:0,set_vers:0,setacktyp:0,setbatchs:0,setbookmark:0,setclientnam:0,setcommand:0,setcommandid:0,setcorrelationid:0,setdata:0,setdisconnecthandl:0,setexceptionlisten:0,setexpir:0,setfilt:0,setgroupsequencenumb:0,setheartbeat:0,setleaseperiod:0,setmatch:0,setmessagelength:0,setmessagetyp:0,setnam:0,setondisconnecthandl:0,setopt:0,setorderbi:0,setpassword:0,setqueryid:0,setreason:0,setrecordsinsert:0,setrecordsreturn:0,setrecordsupd:0,setsequ:0,setsowdelet:0,setsowkei:0,setstatu:0,setsubscriptionid:0,settimeoutinterv:0,settimestamp:0,settop:0,settopicmatch:0,settopnrecordsreturn:0,setunhandledmessagehandl:0,setuserid:0,setvers:0,share:0,should:0,showchoos:0,shown:0,signatur:0,similar:0,simpl:0,simultan:0,sinc:0,singl:0,site:1,size:0,skip_n:0,small:0,smaller:0,snippet:0,socket:0,some:0,someth:0,sow:0,sow_and_delta_subscrib:0,sow_and_subscrib:0,sow_delet:0,sow_delete_by_data:0,sow_delete_by_kei:0,sow_kei:0,sow_top:0,sowanddeltasubscrib:0,sowandsubscrib:0,sowdelet:0,sowkei:0,sowrecoverypointadapt:0,special:0,specif:0,specifi:0,squar:0,ssl:0,ssl_ctx_load_verify_loc:0,ssl_init:0,ssl_load_verify_loc:0,ssl_set_verifi:0,start:0,start_tim:0,stat:0,state:0,statu:0,step:0,still:0,stop:0,stop_tim:0,storag:0,store:0,storeerror:0,storeexcept:0,str:0,str_or_messag:0,strategi:0,stream:0,streamerror:0,streamexcept:0,string:0,sub:0,sub_id:0,subid:0,subidinuseexcept:0,submit:0,subscrib:0,subscript:0,subscriptionalreadyexist:0,subscriptionalreadyexistsexcept:0,subset:0,succe:0,succeed:0,success:0,successfulli:0,successfullyconnect:0,suitabl:0,suppli:0,support:0,sure:0,synchron:0,system:0,tag:0,take:0,tcp:0,tell:0,temp_file_nam:0,temporari:0,test_client:0,than:0,thei:0,thi:0,thing:0,third:0,those:0,thread:0,thread_created_cal:0,through:0,thrown:0,time:0,timedout:0,timedoutexcept:0,timeout:0,timeout_interv:0,timeout_second:0,timer:0,timestamp:0,tmp_file_nam:0,to_map:0,token:0,top:0,top_n:0,topic:0,topic_match:0,topic_nam:0,track:0,transact:0,transport:0,transport_filter_cal:0,transporterror:0,transportexcept:0,transportnotfound:0,transporttypeexcept:0,trim:0,truncat:0,truncate_on_clos:0,two:0,type:0,typic:0,unabl:0,unacknowledg:0,unavail:0,unchang:0,undefin:0,underli:0,undiscard:0,unintention:0,uniqu:0,unknown:0,unknownerror:0,unknownexcept:0,unless:0,unnecessari:0,unpersist:0,unrecogn:0,unrecover:0,unsubscrib:0,unsupport:0,until:0,updat:0,uri:0,usageexcept:0,use:0,used:0,useful:0,user:0,user_id:0,userdata:0,userid:0,usernam:0,uses:0,using:0,valid:0,valu:0,verbatim:0,version:0,versioninfo:0,via:0,wai:0,wait:0,web:1,welcom:1,well:0,went:0,what:0,when:0,where:0,whether:0,which:0,whichev:0,whose:0,willing:0,within:0,without:0,worker:0,world:0,would:0,wrap:0,write:0,written:0,wrong:0,x01:0,xml:0,xpath:0,yet:0,you:0,your:0},titles:["AMPS Module Reference","AMPS Python Client Reference"],titleterms:{amp:[0,1],client:1,indic:1,modul:0,python:1,refer:[0,1],tabl:1}})
1
+ Search.setIndex({docnames:["code","index"],envversion:51,filenames:["code.rst","index.rst"],objects:{"":{AMPS:[0,0,0,"-"]},"AMPS.Client":{Bookmarks:[0,2,1,""],ConnectionStateListener:[0,2,1,""],ack:[0,3,1,""],add_connection_state_listener:[0,3,1,""],add_message_handler:[0,3,1,""],allocateMessage:[0,3,1,""],allocate_message:[0,3,1,""],bookmark_subscribe:[0,3,1,""],close:[0,3,1,""],connect:[0,3,1,""],convert_version_to_number:[0,3,1,""],deltaPublish:[0,3,1,""],deltaSubscribe:[0,3,1,""],delta_publish:[0,3,1,""],delta_subscribe:[0,3,1,""],disconnect:[0,3,1,""],execute:[0,3,1,""],execute_async:[0,3,1,""],flush:[0,3,1,""],getName:[0,3,1,""],get_ack_batch_size:[0,3,1,""],get_ack_timeout:[0,3,1,""],get_auto_ack:[0,3,1,""],get_default_max_depth:[0,3,1,""],get_duplicate_message_handler:[0,3,1,""],get_error_on_publish_gap:[0,3,1,""],get_exception_listener:[0,3,1,""],get_logon_correlation_data:[0,3,1,""],get_name:[0,3,1,""],get_name_hash:[0,3,1,""],get_name_hash_value:[0,3,1,""],get_retry_on_disconnect:[0,3,1,""],get_server_version:[0,3,1,""],get_server_version_info:[0,3,1,""],get_unpersisted_count:[0,3,1,""],get_uri:[0,3,1,""],logon:[0,3,1,""],name:[0,3,1,""],publish:[0,3,1,""],publish_flush:[0,3,1,""],remove_connection_state_listener:[0,3,1,""],remove_message_handler:[0,3,1,""],send:[0,3,1,""],setDisconnectHandler:[0,3,1,""],setExceptionListener:[0,3,1,""],setName:[0,3,1,""],setOnDisconnectHandler:[0,3,1,""],setUnhandledMessageHandler:[0,3,1,""],set_ack_batch_size:[0,3,1,""],set_ack_timeout:[0,3,1,""],set_auto_ack:[0,3,1,""],set_bookmark_store:[0,3,1,""],set_default_max_depth:[0,3,1,""],set_disconnect_handler:[0,3,1,""],set_duplicate_message_handler:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_exception_listener:[0,3,1,""],set_failed_write_handler:[0,3,1,""],set_global_command_type_message_handler:[0,3,1,""],set_heartbeat:[0,3,1,""],set_last_chance_message_handler:[0,3,1,""],set_logon_correlation_data:[0,3,1,""],set_name:[0,3,1,""],set_publish_store:[0,3,1,""],set_retry_on_disconnect:[0,3,1,""],set_thread_created_callback:[0,3,1,""],set_transport_filter:[0,3,1,""],set_unhandled_message_handler:[0,3,1,""],sow:[0,3,1,""],sowAndDeltaSubscribe:[0,3,1,""],sowAndSubscribe:[0,3,1,""],sowDelete:[0,3,1,""],sow_and_delta_subscribe:[0,3,1,""],sow_and_subscribe:[0,3,1,""],sow_delete:[0,3,1,""],sow_delete_by_data:[0,3,1,""],sow_delete_by_keys:[0,3,1,""],start_timer:[0,3,1,""],stop_timer:[0,3,1,""],subscribe:[0,3,1,""],unsubscribe:[0,3,1,""]},"AMPS.Command":{add_ack_type:[0,3,1,""],get_ack_type:[0,3,1,""],get_ack_type_enum:[0,3,1,""],get_sequence:[0,3,1,""],reset:[0,3,1,""],set_ack_type:[0,3,1,""],set_ack_type_enum:[0,3,1,""],set_batch_size:[0,3,1,""],set_bookmark:[0,3,1,""],set_command_id:[0,3,1,""],set_correlation_id:[0,3,1,""],set_data:[0,3,1,""],set_expiration:[0,3,1,""],set_filter:[0,3,1,""],set_options:[0,3,1,""],set_order_by:[0,3,1,""],set_query_id:[0,3,1,""],set_sequence:[0,3,1,""],set_sow_key:[0,3,1,""],set_sow_keys:[0,3,1,""],set_sub_id:[0,3,1,""],set_timeout:[0,3,1,""],set_top_n:[0,3,1,""],set_topic:[0,3,1,""]},"AMPS.CompositeMessageBuilder":{append:[0,3,1,""],clear:[0,3,1,""],get_data:[0,3,1,""]},"AMPS.CompositeMessageParser":{get_part:[0,3,1,""],get_part_raw:[0,3,1,""],parse:[0,3,1,""],size:[0,3,1,""]},"AMPS.ConflatingRecoveryPointAdapter":{close:[0,3,1,""],next:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],update:[0,3,1,""]},"AMPS.DefaultAuthenticator":{authenticate:[0,3,1,""],completed:[0,3,1,""],retry:[0,3,1,""]},"AMPS.DefaultServerChooser":{add:[0,3,1,""],add_all:[0,3,1,""],get_current_authenticator:[0,3,1,""],get_current_uri:[0,3,1,""],get_error:[0,3,1,""],next:[0,3,1,""],report_failure:[0,3,1,""],report_success:[0,3,1,""]},"AMPS.ExponentialDelayStrategy":{get_connect_wait_duration:[0,3,1,""],reset:[0,3,1,""]},"AMPS.FIXBuilder":{append:[0,3,1,""],get_string:[0,3,1,""],reset:[0,3,1,""]},"AMPS.FIXShredder":{to_map:[0,3,1,""]},"AMPS.FixedDelayStrategy":{get_connect_wait_duration:[0,3,1,""],reset:[0,3,1,""]},"AMPS.HAClient":{connect:[0,3,1,""],connect_and_logon:[0,3,1,""],discard:[0,3,1,""],get_default_resubscription_timeout:[0,3,1,""],get_logon_options:[0,3,1,""],get_most_recent:[0,3,1,""],get_reconnect_delay_strategy:[0,3,1,""],get_resubscription_timeout:[0,3,1,""],get_server_chooser:[0,3,1,""],logon:[0,3,1,""],prune_store:[0,3,1,""],set_default_resubscription_timeout:[0,3,1,""],set_failed_resubscribe_handler:[0,3,1,""],set_logon_options:[0,3,1,""],set_reconnect_delay:[0,3,1,""],set_reconnect_delay_strategy:[0,3,1,""],set_resubscription_timeout:[0,3,1,""],set_server_chooser:[0,3,1,""],set_timeout:[0,3,1,""]},"AMPS.HybridPublishStore":{get_unpersisted_count:[0,3,1,""],set_resize_handler:[0,3,1,""]},"AMPS.MMapBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.MemoryBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.MemoryPublishStore":{get_error_on_publish_gap:[0,3,1,""],get_unpersisted_count:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_resize_handler:[0,3,1,""]},"AMPS.Message":{Options:[0,2,1,""],ack:[0,3,1,""],getAckType:[0,3,1,""],getBatchSize:[0,3,1,""],getBookmark:[0,3,1,""],getClientName:[0,3,1,""],getCommand:[0,3,1,""],getCommandId:[0,3,1,""],getCorrelationId:[0,3,1,""],getData:[0,3,1,""],getExpiration:[0,3,1,""],getFilter:[0,3,1,""],getGroupSequenceNumber:[0,3,1,""],getHeartbeat:[0,3,1,""],getLeasePeriod:[0,3,1,""],getMatches:[0,3,1,""],getMessageLength:[0,3,1,""],getMessageType:[0,3,1,""],getOptions:[0,3,1,""],getOrderBy:[0,3,1,""],getPassword:[0,3,1,""],getQueryID:[0,3,1,""],getReason:[0,3,1,""],getRecordsInserted:[0,3,1,""],getRecordsReturned:[0,3,1,""],getRecordsUpdated:[0,3,1,""],getSequence:[0,3,1,""],getSowDelete:[0,3,1,""],getSowKey:[0,3,1,""],getSowKeys:[0,3,1,""],getStatus:[0,3,1,""],getSubscriptionId:[0,3,1,""],getSubscriptionIds:[0,3,1,""],getTimeoutInterval:[0,3,1,""],getTimestamp:[0,3,1,""],getTopNRecordsReturned:[0,3,1,""],getTopic:[0,3,1,""],getTopicMatches:[0,3,1,""],getUserId:[0,3,1,""],getVersion:[0,3,1,""],get_ack_type:[0,3,1,""],get_batch_size:[0,3,1,""],get_bookmark:[0,3,1,""],get_bookmark_seq_no:[0,3,1,""],get_client_name:[0,3,1,""],get_command:[0,3,1,""],get_command_id:[0,3,1,""],get_correlation_id:[0,3,1,""],get_data:[0,3,1,""],get_data_raw:[0,3,1,""],get_expiration:[0,3,1,""],get_filter:[0,3,1,""],get_group_seq_no:[0,3,1,""],get_heartbeat:[0,3,1,""],get_lease_period:[0,3,1,""],get_matches:[0,3,1,""],get_message_size:[0,3,1,""],get_message_type:[0,3,1,""],get_options:[0,3,1,""],get_order_by:[0,3,1,""],get_password:[0,3,1,""],get_query_id:[0,3,1,""],get_reason:[0,3,1,""],get_records_inserted:[0,3,1,""],get_records_returned:[0,3,1,""],get_records_updated:[0,3,1,""],get_sequence:[0,3,1,""],get_sow_deleted:[0,3,1,""],get_sow_key:[0,3,1,""],get_sow_keys:[0,3,1,""],get_status:[0,3,1,""],get_sub_id:[0,3,1,""],get_sub_ids:[0,3,1,""],get_timeout_interval:[0,3,1,""],get_timestamp:[0,3,1,""],get_top_n:[0,3,1,""],get_topic:[0,3,1,""],get_topic_matches:[0,3,1,""],get_user_id:[0,3,1,""],get_version:[0,3,1,""],reset:[0,3,1,""],setAckType:[0,3,1,""],setBatchSize:[0,3,1,""],setBookmark:[0,3,1,""],setClientName:[0,3,1,""],setCommand:[0,3,1,""],setCommandId:[0,3,1,""],setCorrelationId:[0,3,1,""],setData:[0,3,1,""],setExpiration:[0,3,1,""],setFilter:[0,3,1,""],setGroupSequenceNumber:[0,3,1,""],setHeartbeat:[0,3,1,""],setLeasePeriod:[0,3,1,""],setMatches:[0,3,1,""],setMessageLength:[0,3,1,""],setMessageType:[0,3,1,""],setOptions:[0,3,1,""],setOrderBy:[0,3,1,""],setPassword:[0,3,1,""],setQueryID:[0,3,1,""],setReason:[0,3,1,""],setRecordsInserted:[0,3,1,""],setRecordsReturned:[0,3,1,""],setRecordsUpdated:[0,3,1,""],setSequence:[0,3,1,""],setSowDelete:[0,3,1,""],setSowKey:[0,3,1,""],setSowKeys:[0,3,1,""],setStatus:[0,3,1,""],setSubscriptionId:[0,3,1,""],setSubscriptionIds:[0,3,1,""],setTimeoutInterval:[0,3,1,""],setTimestamp:[0,3,1,""],setTopNRecordsReturned:[0,3,1,""],setTopic:[0,3,1,""],setTopicMatches:[0,3,1,""],setUserId:[0,3,1,""],setVersion:[0,3,1,""],set_ack_type:[0,3,1,""],set_batch_size:[0,3,1,""],set_bookmark:[0,3,1,""],set_client_name:[0,3,1,""],set_command:[0,3,1,""],set_command_id:[0,3,1,""],set_correlation_id:[0,3,1,""],set_data:[0,3,1,""],set_expiration:[0,3,1,""],set_filter:[0,3,1,""],set_group_seq_no:[0,3,1,""],set_heartbeat:[0,3,1,""],set_lease_period:[0,3,1,""],set_matches:[0,3,1,""],set_message_size:[0,3,1,""],set_message_type:[0,3,1,""],set_options:[0,3,1,""],set_order_by:[0,3,1,""],set_password:[0,3,1,""],set_query_id:[0,3,1,""],set_reason:[0,3,1,""],set_records_inserted:[0,3,1,""],set_records_returned:[0,3,1,""],set_records_updated:[0,3,1,""],set_sequence:[0,3,1,""],set_sow_deleted:[0,3,1,""],set_sow_key:[0,3,1,""],set_sow_keys:[0,3,1,""],set_status:[0,3,1,""],set_sub_id:[0,3,1,""],set_sub_ids:[0,3,1,""],set_timeout_interval:[0,3,1,""],set_timestamp:[0,3,1,""],set_top_n:[0,3,1,""],set_topic:[0,3,1,""],set_topic_matches:[0,3,1,""],set_user_id:[0,3,1,""],set_version:[0,3,1,""]},"AMPS.Message.Options":{set_OOF:[0,3,1,""],set_cancel:[0,3,1,""],set_conflation:[0,3,1,""],set_conflation_key:[0,3,1,""],set_fully_durable:[0,3,1,""],set_grouping:[0,3,1,""],set_live:[0,3,1,""],set_max_backlog:[0,3,1,""],set_no_empties:[0,3,1,""],set_no_sowkey:[0,3,1,""],set_none:[0,3,1,""],set_pause:[0,3,1,""],set_projection:[0,3,1,""],set_rate:[0,3,1,""],set_rate_max_gap:[0,3,1,""],set_replace:[0,3,1,""],set_resume:[0,3,1,""],set_send_keys:[0,3,1,""],set_skip_n:[0,3,1,""],set_timestamp:[0,3,1,""],set_top_n:[0,3,1,""]},"AMPS.MessageStream":{close:[0,3,1,""],conflate:[0,3,1,""],get_depth:[0,3,1,""],get_max_depth:[0,3,1,""],max_depth:[0,3,1,""],timeout:[0,3,1,""]},"AMPS.NVFIXBuilder":{append:[0,3,1,""],get_string:[0,3,1,""],reset:[0,3,1,""]},"AMPS.NVFIXShredder":{to_map:[0,3,1,""]},"AMPS.PublishStore":{get_error_on_publish_gap:[0,3,1,""],get_unpersisted_count:[0,3,1,""],set_error_on_publish_gap:[0,3,1,""],set_resize_handler:[0,3,1,""],truncate_on_close:[0,3,1,""]},"AMPS.RecoveryPoint":{get_bookmark:[0,3,1,""],get_sub_id:[0,3,1,""]},"AMPS.RingBookmarkStore":{discard:[0,3,1,""],discard_message:[0,3,1,""],get_most_recent:[0,3,1,""],get_oldest_bookmark_seq:[0,3,1,""],is_discarded:[0,3,1,""],log:[0,3,1,""],persisted:[0,3,1,""],persisted_index:[0,3,1,""],purge:[0,3,1,""],purge_sub_id:[0,3,1,""],set_resize_handler:[0,3,1,""],set_server_version:[0,3,1,""]},"AMPS.SOWRecoveryPointAdapter":{close:[0,3,1,""],get_exception_listener:[0,3,1,""],next:[0,3,1,""],prune:[0,3,1,""],purge:[0,3,1,""],set_exception_listener:[0,3,1,""],update:[0,3,1,""]},"AMPS.VersionInfo":{get_old_style_version:[0,3,1,""],get_version_number:[0,3,1,""],get_version_string:[0,3,1,""],set_version:[0,3,1,""]},AMPS:{AMPSException:[0,1,1,""],AlreadyConnected:[0,1,1,""],AlreadyConnectedException:[0,1,1,""],AuthenticationError:[0,1,1,""],AuthenticationException:[0,1,1,""],BadFilter:[0,1,1,""],BadFilterException:[0,1,1,""],BadRegexTopic:[0,1,1,""],BadRegexTopicException:[0,1,1,""],BadSowKeyException:[0,1,1,""],CMessageHandler:[0,2,1,""],Client:[0,2,1,""],ClientNameInUse:[0,1,1,""],Command:[0,2,1,""],CommandError:[0,1,1,""],CommandException:[0,1,1,""],CommandTimedOut:[0,1,1,""],CommandTypeError:[0,1,1,""],CompositeMessageBuilder:[0,2,1,""],CompositeMessageParser:[0,2,1,""],ConflatingRecoveryPointAdapter:[0,2,1,""],ConnectionError:[0,1,1,""],ConnectionException:[0,1,1,""],ConnectionRefused:[0,1,1,""],ConnectionRefusedException:[0,1,1,""],CorruptedRecord:[0,1,1,""],DefaultAuthenticator:[0,2,1,""],DefaultServerChooser:[0,2,1,""],Disconnected:[0,1,1,""],DisconnectedException:[0,1,1,""],DuplicateLogonException:[0,1,1,""],ExponentialDelayStrategy:[0,2,1,""],FIXBuilder:[0,2,1,""],FIXShredder:[0,2,1,""],FixedDelayStrategy:[0,2,1,""],HAClient:[0,2,1,""],HybridPublishStore:[0,2,1,""],InvalidBookmarkException:[0,1,1,""],InvalidMessageTypeOptions:[0,1,1,""],InvalidOptionsException:[0,1,1,""],InvalidOrderByException:[0,1,1,""],InvalidSubIdException:[0,1,1,""],InvalidTopicError:[0,1,1,""],InvalidTopicException:[0,1,1,""],InvalidTransportOptions:[0,1,1,""],InvalidTransportOptionsException:[0,1,1,""],InvalidUriException:[0,1,1,""],InvalidUriFormat:[0,1,1,""],LocalStorageError:[0,1,1,""],LogonRequiredException:[0,1,1,""],MMapBookmarkStore:[0,2,1,""],MemoryBookmarkStore:[0,2,1,""],MemoryPublishStore:[0,2,1,""],Message:[0,2,1,""],MessageStream:[0,2,1,""],MessageTypeError:[0,1,1,""],MessageTypeException:[0,1,1,""],MessageTypeNotFound:[0,1,1,""],MissingFieldsException:[0,1,1,""],NVFIXBuilder:[0,2,1,""],NVFIXShredder:[0,2,1,""],NameInUseException:[0,1,1,""],NotEntitledError:[0,1,1,""],NotEntitledException:[0,1,1,""],PublishException:[0,1,1,""],PublishStore:[0,2,1,""],PublishStoreGapException:[0,1,1,""],Reason:[0,2,1,""],RecoveryPoint:[0,2,1,""],RetryOperation:[0,1,1,""],RetryOperationException:[0,1,1,""],RingBookmarkStore:[0,2,1,""],SOWRecoveryPointAdapter:[0,2,1,""],Store:[0,2,1,""],StoreException:[0,1,1,""],StreamError:[0,1,1,""],StreamException:[0,1,1,""],SubidInUseException:[0,1,1,""],SubscriptionAlreadyExists:[0,1,1,""],SubscriptionAlreadyExistsException:[0,1,1,""],TimedOut:[0,1,1,""],TimedOutException:[0,1,1,""],TransportError:[0,1,1,""],TransportException:[0,1,1,""],TransportNotFound:[0,1,1,""],TransportTypeException:[0,1,1,""],UnknownError:[0,1,1,""],UnknownException:[0,1,1,""],UsageException:[0,1,1,""],VersionInfo:[0,2,1,""],ssl_init:[0,4,1,""],ssl_load_verify_locations:[0,4,1,""],ssl_set_verify:[0,4,1,""]}},objnames:{"0":["py","module","Python module"],"1":["py","exception","Python exception"],"2":["py","class","Python class"],"3":["py","method","Python method"],"4":["py","function","Python function"]},objtypes:{"0":"py:module","1":"py:exception","2":"py:class","3":"py:method","4":"py:function"},terms:{"100m":0,"200m":0,"250m":0,"30s":0,"400m":0,"60east":[0,1],"800m":0,"boolean":0,"byte":0,"case":0,"class":0,"const":0,"default":0,"enum":0,"export":0,"final":0,"function":0,"import":0,"int":0,"new":0,"return":0,"short":0,"throw":0,"true":0,"try":0,"void":0,"while":0,For:[0,1],Not:0,One:0,The:0,There:0,These:1,Use:0,Used:0,Using:0,Will:0,With:0,__deepcopy__:0,abandon:0,abl:0,about:0,absorb:0,accept:0,access:0,accord:0,ack:0,ack_confl:0,ack_typ:0,ackmessag:0,acknowledg:0,acktyp:0,across:0,activ:0,actual:0,adapt:0,add:0,add_ack_typ:0,add_al:0,add_connection_state_listen:0,add_message_handl:0,adding:0,addit:0,address:0,advanc:0,affect:0,after:0,against:0,aggreg:0,all:0,alloc:0,allocate_messag:0,allocatemessag:0,allow:0,alreadi:0,alreadyconnect:0,alreadyconnectedexcept:0,alreadyconnectedexcpet:0,also:0,although:0,alwai:0,amessag:0,amount:0,ampsexcept:0,ampspi:0,ani:0,anoth:0,api:0,appear:0,append:0,appli:0,applic:0,approach:0,appropri:0,argument:0,arriv:0,asc:0,assign:0,associ:0,assum:0,async:0,asynchron:0,attempt:0,attemptsmultipl:0,authent:0,authenticationerror:0,authenticationexcept:0,auto:0,automat:0,avail:0,avoid:0,await:0,back:0,background:0,backlog:0,backoff:0,backoff_expon:0,badfilt:0,badfilterexcept:0,badregextop:0,badregextopicexcept:0,badsowkeyexcept:0,base64:0,base:0,batch:0,batch_siz:0,batchsiz:0,becaus:0,becom:0,been:0,befor:0,begin:0,behavior:0,being:0,below:0,between:0,block:0,bodi:0,bookmark:0,bookmark_index:0,bookmark_stor:0,bookmark_subscrib:0,bool:0,both:0,bracket:0,buffer:0,build:0,bypass:0,ca_fil:0,ca_path:0,calcul:0,call:0,callabl:0,caller:0,came:1,can:0,cancel:0,capac:0,cdll:0,certif:0,chang:0,charact:0,check:0,choos:0,chooser:0,chosen:0,chr:0,clariti:0,claus:0,clear:0,client:0,client_disconnect_handl:0,client_nam:0,clientdisconnecthandl:0,clientnam:0,clientnameinus:0,close:0,cmd:0,cmessagehandl:0,come:0,comma:0,command:0,command_id:0,command_nam:0,commanderror:0,commandexcept:0,commandtimedout:0,commandtypeerror:0,commun:0,compil:0,complet:0,compon:0,composit:0,compositemessagebuild:0,compositemessagepars:0,configur:0,conflat:0,conflatingrecoverypointadapt:0,conflation_kei:0,connect:0,connect_and_logon:0,connectionerror:0,connectionexcept:0,connectioninfo:0,connectionrefus:0,connectionrefusedexcept:0,connectionstatelisten:0,consecut:0,consid:0,consist:0,constant:0,construct:0,constructor:0,consum:0,contain:0,content:[0,1],context:0,continu:0,control:0,conveni:0,convert:0,convert_version_to_numb:0,cookbook:0,copi:0,correl:0,correlation_id:0,correspond:0,corruptedrecord:0,could:0,count:0,creat:0,credenti:0,ctype:0,current:0,custom:0,cut:0,data:0,deal:0,deem:0,def:0,defaultauthent:0,defaultserverchoos:0,defin:0,definit:0,del:0,delai:0,deleg:0,delet:0,delimit:0,deliv:0,delta:0,delta_publish:0,delta_subscrib:0,deltapublish:0,deltasubscrib:0,depend:0,deprec:0,depth:0,deriv:0,desc:0,describ:0,design:0,destin:0,detail:[0,1],detect:0,determin:0,develop:[0,1],dict:0,dictionari:0,dies:0,differ:0,digit:0,direct:0,directli:0,directori:0,disabl:0,discard:0,discard_messag:0,disconnect:0,disconnectedexcept:0,disconnectexcept:0,disconnecthandl:0,disk:0,dll:0,dllpath:0,doe:0,dot:0,download:1,due:0,duplic:0,duplicatelogonexcept:0,dure:0,each:0,eas:0,easili:0,effect:0,effici:0,either:0,empti:0,enabl:0,encod:0,end:0,enforc:0,enough:0,ensur:0,entir:0,entitl:0,entri:0,epoch:0,equival:0,error:0,error_on_publish_gap:0,establish:0,etc:0,event:0,everi:0,exampl:0,exce:0,exceed:0,except:0,exception_listen:0,execut:0,execute_async:0,executeasync:0,exist:0,exit:0,expect:0,expir:0,explicit:0,expon:0,exponenti:0,exponentialdelaystrategi:0,express:0,extern:0,fail:0,failedwritehandl:0,failov:0,failur:0,fals:0,faq:0,field:0,file:0,filenam:0,fill:0,filter:0,find:0,finish:0,first:0,fix:0,fixbuild:0,fixeddelaystrategi:0,fixshredd:0,flexibl:0,flush:0,focu:0,follow:0,forc:0,format:0,forward:0,frame:0,free:0,from:0,full:0,fully_dur:0,further:0,gap:0,gener:0,get:0,get_ack_batch_s:0,get_ack_timeout:0,get_ack_typ:0,get_ack_type_enum:0,get_auto_ack:0,get_batch_s:0,get_bookmark:0,get_bookmark_seq_no:0,get_client_nam:0,get_command:0,get_command_id:0,get_connect_wait_dur:0,get_correlation_id:0,get_current_authent:0,get_current_uri:0,get_data:0,get_data_raw:0,get_default_max_depth:0,get_default_resubscription_timeout:0,get_depth:0,get_duplicate_message_handl:0,get_error:0,get_error_on_publish_gap:0,get_exception_listen:0,get_expir:0,get_filt:0,get_group_seq_no:0,get_heartbeat:0,get_lease_period:0,get_logon_correlation_data:0,get_logon_opt:0,get_match:0,get_max_depth:0,get_message_s:0,get_message_typ:0,get_most_rec:0,get_nam:0,get_name_hash:0,get_name_hash_valu:0,get_old_style_vers:0,get_oldest_bookmark_seq:0,get_opt:0,get_order_bi:0,get_part:0,get_part_raw:0,get_password:0,get_query_id:0,get_reason:0,get_reconnect_delay_strategi:0,get_records_insert:0,get_records_return:0,get_records_upd:0,get_resubscription_timeout:0,get_retry_on_disconnect:0,get_sequ:0,get_server_choos:0,get_server_vers:0,get_server_version_info:0,get_sow_delet:0,get_sow_kei:0,get_statu:0,get_str:0,get_sub_id:0,get_timeout_interv:0,get_timestamp:0,get_top:0,get_top_n:0,get_topic_match:0,get_unpersisted_count:0,get_uri:0,get_user_id:0,get_vers:0,get_version_numb:0,get_version_str:0,getacktyp:0,getbatchs:0,getbookmark:0,getclientnam:0,getcommand:0,getcommandid:0,getcorrelationid:0,getdata:0,getexpir:0,getfilt:0,getgroupsequencenumb:0,getheartbeat:0,getleaseperiod:0,getmatch:0,getmessagelength:0,getmessagetyp:0,getnam:0,getopt:0,getorderbi:0,getpassword:0,getqueryid:0,getreason:0,getrecordsinsert:0,getrecordsreturn:0,getrecordsupd:0,getsequ:0,getsowdelet:0,getsowkei:0,getstatu:0,getsubscriptionid:0,gettimeoutinterv:0,gettimestamp:0,gettop:0,gettopicmatch:0,gettopnrecordsreturn:0,getuserid:0,getvers:0,give:0,given:0,global:0,grant:0,greater:0,group:0,group_begin:0,group_end:0,group_seq_no:0,guarante:0,guid:[0,1],haclient:0,hand:0,handl:0,handler:0,hang:0,has:0,hash:0,have:0,header:0,heartbeat:0,held:0,help:0,helper:0,higher:0,highli:0,histor:0,histori:0,host:0,hostnam:0,how:0,howev:0,human:0,hybridpublishstor:0,ident:0,identifi:0,ignor:0,implement:0,improp:0,improperli:0,includ:0,incom:0,incorrectli:0,indefinit:0,index:[0,1],indic:0,individu:0,inform:0,infrastructur:0,initi:0,initial_delai:0,instal:0,instanc:0,instead:0,integ:0,intend:0,interfac:0,intern:0,interpret:0,interv:0,interval_second:0,intrepret:0,introduct:1,invalid:0,invalidbookmarkexcept:0,invalidmessagetypeopt:0,invalidoptionsexcept:0,invalidorderbyexcept:0,invalidsubidexcept:0,invalidtopicerror:0,invalidtopicexcept:0,invalidtransportopt:0,invalidtransportoptionsexcept:0,invaliduriexcept:0,invaliduriformat:0,invoc:0,invok:0,is_discard:0,is_subscrib:0,issu:0,item:0,iter:0,itself:0,jitter:0,journal:0,json:0,just:0,keep:0,kei:0,keyword:0,know:0,last:0,lease_period:0,legaci:0,length:0,librari:[0,1],like:0,likewis:0,limit:0,list:0,listen:0,listener_cal:0,liter:0,live:0,load:0,local:0,localstorageerror:0,locat:0,lock:0,log:0,logon:0,logon_correlation_data:0,logonrequiredexcept:0,longer:0,look:0,loss:0,made:0,mai:0,maintain:0,mainten:0,major:0,make:0,manag:0,manner:0,map:0,mark:0,match:0,max:0,max_backlog:0,max_depth:0,maxdepth:0,maximum:0,maximum_delai:0,maximum_retry_tim:0,mean:0,meaning:0,measur:0,memori:0,memorybookmarkstor:0,memorypublishstor:0,messag:0,message_handl:0,message_s:0,message_typ:0,messagehandl:0,messagehandlerfunc:0,messagestream:0,messagetypeerror:0,messagetypeexcept:0,messagetypenotfound:0,method:0,might:0,milli:0,millisecond:0,millsecond:0,minim:0,minor:0,miss:0,missingfieldsexcept:0,mmapbookmarkstor:0,modifi:0,modul:1,monitor:0,more:0,most:0,most_rec:0,multipl:0,multipli:0,must:0,my_amps_top:0,my_cool_top:0,my_dll:0,my_message_handl:0,mymessagehandl:0,mysowtop:0,name:0,nameinuseexcept:0,necessari:0,need:0,negoti:0,network:0,newli:0,newlin:0,next:0,no_empti:0,no_sowkei:0,no_stor:0,none:0,nonrespons:0,normal:0,note:0,notentitlederror:0,notentitledexcept:0,notic:0,now:0,number:0,numer:0,nvfix:0,nvfixbuild:0,nvfixshredd:0,object:0,obsolet:0,occur:0,off:0,offset:0,oldest:0,omit:0,on_messag:0,onc:0,one:0,onli:0,onto:0,oof:0,oof_en:0,opaqu:0,open:0,openssl:0,oper:0,option:0,optionsand:0,order:0,order_bi:0,orderbi:0,orderid:0,ordertimestamp:0,origin:0,other:0,otherwis:0,ought:0,out:0,outgo:0,output:0,over:0,overrid:0,overview:1,page:1,param:0,paramet:0,pars:0,part:0,particular:0,pass:0,password:0,patch:0,path:0,paus:0,peer:0,pem:0,pend:0,per:0,perform:0,persist:0,persisted_index:0,place:0,point:0,popul:0,port:0,potenti:0,practic:0,present:0,prevent:0,previou:0,previous:0,print:0,printfailedwrit:0,process:0,processedenum:0,produc:0,program:0,project:0,proper:0,properti:0,protocol:0,provid:[0,1],prune:0,prune_stor:0,publish:0,publish_flush:0,publish_stor:0,publishexcept:0,publishstor:0,publishstoregapexcept:0,purg:0,purge_sub_id:0,purpos:0,pushback:0,python:0,queri:0,query_id:0,queu:0,queue:0,rais:0,rare:0,rate:0,rate_max_gap:0,rather:0,raw:0,reach:0,read:0,readabl:0,reason:0,receiv:0,recent:0,recommend:0,reconnect:0,reconnect_delai:0,reconnect_delay_strategi:0,record:0,records_insert:0,records_return:0,records_upd:0,recov:0,recoveri:0,recovery_point:0,recoverypoint:0,recoverypointadapt:0,reduc:0,refus:0,regard:0,regardless:0,region:0,regular:0,relat:0,relationship:0,remain:0,remov:0,remove_connection_state_listen:0,remove_message_handl:0,replac:0,replai:0,replic:0,report:0,report_failur:0,report_success:0,repres:0,represent:0,reprocess:0,request:0,requir:0,reset:0,resiz:0,resourc:0,respond:0,respons:0,restart:0,restrict:0,resubscrib:0,result:0,resum:0,retri:0,retriev:0,retryoper:0,retryoperationexcept:0,reus:0,ringbookmarkstor:0,risk:0,run:0,same:0,save:0,scenario:0,search:1,second:0,section:0,see:[0,1],seen:0,self:0,send:0,send_empti:0,send_kei:0,sent:0,separ:0,sequenc:0,server:0,serverchoos:0,set:0,set_ack_batch_s:0,set_ack_timeout:0,set_ack_typ:0,set_ack_type_enum:0,set_auto_ack:0,set_batch_s:0,set_bookmark:0,set_bookmark_stor:0,set_cancel:0,set_client_nam:0,set_command:0,set_command_id:0,set_confl:0,set_conflation_kei:0,set_correlation_id:0,set_data:0,set_default_max_depth:0,set_default_resubscription_timeout:0,set_disconnect_handl:0,set_duplicate_message_handl:0,set_error_on_publish_gap:0,set_exception_listen:0,set_expir:0,set_failed_resubscribe_handl:0,set_failed_write_handl:0,set_filt:0,set_fully_dur:0,set_global_command_type_message_handl:0,set_group:0,set_group_seq_no:0,set_heartbeat:0,set_last_chance_message_handl:0,set_lease_period:0,set_liv:0,set_logon_correlation_data:0,set_logon_opt:0,set_match:0,set_max_backlog:0,set_message_s:0,set_message_typ:0,set_nam:0,set_no_empti:0,set_no_sowkei:0,set_non:0,set_oof:0,set_opt:0,set_order_bi:0,set_password:0,set_paus:0,set_project:0,set_publish_stor:0,set_query_id:0,set_rat:0,set_rate_max_gap:0,set_reason:0,set_reconnect_delai:0,set_reconnect_delay_strategi:0,set_records_insert:0,set_records_return:0,set_records_upd:0,set_replac:0,set_resize_handl:0,set_resubscription_timeout:0,set_resum:0,set_retry_on_disconnect:0,set_send_kei:0,set_sequ:0,set_server_choos:0,set_server_vers:0,set_skip_n:0,set_sow_delet:0,set_sow_kei:0,set_statu:0,set_sub_id:0,set_thread_created_callback:0,set_timeout:0,set_timeout_interv:0,set_timestamp:0,set_top:0,set_top_n:0,set_topic_match:0,set_transport_filt:0,set_unhandled_message_handl:0,set_user_id:0,set_vers:0,setacktyp:0,setbatchs:0,setbookmark:0,setclientnam:0,setcommand:0,setcommandid:0,setcorrelationid:0,setdata:0,setdisconnecthandl:0,setexceptionlisten:0,setexpir:0,setfilt:0,setgroupsequencenumb:0,setheartbeat:0,setleaseperiod:0,setmatch:0,setmessagelength:0,setmessagetyp:0,setnam:0,setondisconnecthandl:0,setopt:0,setorderbi:0,setpassword:0,setqueryid:0,setreason:0,setrecordsinsert:0,setrecordsreturn:0,setrecordsupd:0,setsequ:0,setsowdelet:0,setsowkei:0,setstatu:0,setsubscriptionid:0,settimeoutinterv:0,settimestamp:0,settop:0,settopicmatch:0,settopnrecordsreturn:0,setunhandledmessagehandl:0,setuserid:0,setvers:0,share:0,should:0,showchoos:0,shown:0,signatur:0,similar:0,simpl:0,simultan:0,sinc:0,singl:0,site:1,size:0,skip_n:0,small:0,smaller:0,snippet:0,socket:0,some:0,someth:0,sow:0,sow_and_delta_subscrib:0,sow_and_subscrib:0,sow_delet:0,sow_delete_by_data:0,sow_delete_by_kei:0,sow_kei:0,sow_top:0,sowanddeltasubscrib:0,sowandsubscrib:0,sowdelet:0,sowkei:0,sowrecoverypointadapt:0,special:0,specif:0,specifi:0,squar:0,ssl:0,ssl_ctx_load_verify_loc:0,ssl_init:0,ssl_load_verify_loc:0,ssl_set_verifi:0,start:0,start_tim:0,stat:0,state:0,statu:0,step:0,still:0,stop:0,stop_tim:0,storag:0,store:0,storeerror:0,storeexcept:0,str:0,str_or_messag:0,strategi:0,stream:0,streamerror:0,streamexcept:0,string:0,sub:0,sub_id:0,subid:0,subidinuseexcept:0,submit:0,subscrib:0,subscript:0,subscriptionalreadyexist:0,subscriptionalreadyexistsexcept:0,subset:0,succe:0,succeed:0,success:0,successfulli:0,successfullyconnect:0,suitabl:0,suppli:0,support:0,sure:0,synchron:0,system:0,tag:0,take:0,tcp:0,tell:0,temp_file_nam:0,temporari:0,test_client:0,than:0,thei:0,thi:0,thing:0,third:0,those:0,thread:0,thread_created_cal:0,through:0,thrown:0,time:0,timedout:0,timedoutexcept:0,timeout:0,timeout_interv:0,timeout_second:0,timer:0,timestamp:0,tmp_file_nam:0,to_map:0,token:0,top:0,top_n:0,topic:0,topic_match:0,topic_nam:0,track:0,transact:0,transport:0,transport_filter_cal:0,transporterror:0,transportexcept:0,transportnotfound:0,transporttypeexcept:0,trim:0,truncat:0,truncate_on_clos:0,two:0,type:0,typic:0,unabl:0,unacknowledg:0,unavail:0,unchang:0,undefin:0,underli:0,undiscard:0,unintention:0,uniqu:0,unknown:0,unknownerror:0,unknownexcept:0,unless:0,unnecessari:0,unpersist:0,unrecogn:0,unrecover:0,unsubscrib:0,unsupport:0,until:0,updat:0,uri:0,usageexcept:0,use:0,used:0,useful:0,user:0,user_id:0,userdata:0,userid:0,usernam:0,uses:0,using:0,valid:0,valu:0,verbatim:0,version:0,versioninfo:0,via:0,wai:0,wait:0,web:1,welcom:1,well:0,went:0,what:0,when:0,where:0,whether:0,which:0,whichev:0,whose:0,willing:0,within:0,without:0,worker:0,world:0,would:0,wrap:0,write:0,written:0,wrong:0,x01:0,xml:0,xpath:0,yet:0,you:0,your:0},titles:["AMPS Module Reference","AMPS Python Client Reference"],titleterms:{amp:[0,1],client:1,indic:1,modul:0,python:1,refer:[0,1],tabl:1}})
@@ -25,6 +25,6 @@
25
25
  #ifndef _AMPSPYVER_H_
26
26
  #define _AMPSPYVER_H_
27
27
 
28
- const char* AMPS_PYTHON_VERSION = "5.3.4.2.3304e34.540236";
28
+ const char* AMPS_PYTHON_VERSION = "5.3.4.3.1c0da8e.656215";
29
29
 
30
30
  #endif //_AMPSPYVER_H_
@@ -34,7 +34,7 @@
34
34
  <div id="banner">
35
35
  <a href="http://documentation.crankuptheamps.com/"><img id="logo" src="./docs/resources/flag_logo.svg" alt="60East flags"/></a>
36
36
  <h1>AMPS Python Client Resources</h1>
37
- <h3>Version: 5.3.4.2</h3>
37
+ <h3>Version: 5.3.4.3</h3>
38
38
  </div>
39
39
 
40
40
  <div class="divider"></div>
@@ -13,8 +13,8 @@
13
13
  ## or otherwise made available to any other person.
14
14
  ##
15
15
  ## U.S. Government Restricted Rights. This computer software: (a) was
16
- ## 5.3.4.2ed at private expense and is in all respects the proprietary
17
- ## information of 60East Technologies Inc.; (b) was not 5.3.4.2ed with
16
+ ## 5.3.4.3ed at private expense and is in all respects the proprietary
17
+ ## information of 60East Technologies Inc.; (b) was not 5.3.4.3ed with
18
18
  ## government funds; (c) is a trade secret of 60East Technologies Inc.
19
19
  ## for all purposes of the Freedom of Information Act; and (d) is a
20
20
  ## commercial item and thus, pursuant to Section 12.212 of the Federal
@@ -173,7 +173,7 @@ AMPSModule = Extension('AMPS',
173
173
  AMPSModule.py_limited_api = True
174
174
 
175
175
  # Will be replaced with the actual version number by build.xml
176
- module_version="5.3.4.2"
176
+ module_version="5.3.4.3"
177
177
 
178
178
  if module_version.startswith('@'):
179
179
  # Running this on a bare repository or source tree; try finding the branch name.
@@ -182,7 +182,7 @@ if module_version.startswith('@'):
182
182
  process = subprocess.Popen(["git","rev-parse","--abbrev-ref","HEAD"],stdin=subprocess.PIPE,stdout=subprocess.PIPE,stderr=subprocess.PIPE)
183
183
  result = process.communicate()
184
184
  module_version = result[0].decode('utf-8').strip()
185
- if module_version == "5.3.4.2" or module_version[:5] == "auto-":
185
+ if module_version == "5.3.4.3" or module_version[:5] == "auto-":
186
186
  module_version = "99.99.99.99"
187
187
  print("VERSION %s"%module_version)
188
188
  except:
@@ -13,8 +13,8 @@
13
13
  ## or otherwise made available to any other person.
14
14
  ##
15
15
  ## U.S. Government Restricted Rights. This computer software: (a) was
16
- ## 5.3.4.2ed at private expense and is in all respects the proprietary
17
- ## information of 60East Technologies Inc.; (b) was not 5.3.4.2ed with
16
+ ## 5.3.4.3ed at private expense and is in all respects the proprietary
17
+ ## information of 60East Technologies Inc.; (b) was not 5.3.4.3ed with
18
18
  ## government funds; (c) is a trade secret of 60East Technologies Inc.
19
19
  ## for all purposes of the Freedom of Information Act; and (d) is a
20
20
  ## commercial item and thus, pursuant to Section 12.212 of the Federal
@@ -84,7 +84,7 @@ elif "shared" in sys.argv or "AMPS_SHARED" in os.environ:
84
84
 
85
85
  setup(name='amps-c-client',
86
86
  description='AMPS C Client',
87
- version='5.3.4.2',
87
+ version='5.3.4.3',
88
88
  maintainer='60East Technologies, Incorporated',
89
89
  maintainer_email='support@crankuptheamps.com',
90
90
  url='https://crankuptheamps.com',