amps-python-client 5.3.5.0__tar.gz → 5.3.5.1__tar.gz

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 (177) hide show
  1. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/PKG-INFO +1 -1
  2. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/.buildinfo +1 -1
  3. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/code.html +117 -30
  4. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/genindex.html +12 -6
  5. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/index.html +4 -4
  6. amps-python-client-5.3.5.1/docs/html/objects.inv +0 -0
  7. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/py-modindex.html +4 -4
  8. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/search.html +4 -4
  9. amps-python-client-5.3.5.1/docs/html/searchindex.js +1 -0
  10. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_recoverypointadapter.hpp +1 -0
  11. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspyver.h +1 -1
  12. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/index.html +7 -7
  13. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/setup.py +4 -4
  14. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/setup_amps.py +3 -3
  15. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/ampspy_shims.cpp +1 -1
  16. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/client.cpp +38 -17
  17. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/client_docs.h +76 -0
  18. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/command_docs.h +11 -6
  19. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/BlockPublishStore.hpp +5 -4
  20. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/HAClientImpl.hpp +9 -2
  21. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/HybridPublishStore.hpp +29 -0
  22. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MMapStoreBuffer.hpp +15 -11
  23. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MemoryBookmarkStore.hpp +26 -2
  24. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MemoryPublishStore.hpp +31 -0
  25. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MessageRouter.hpp +1 -1
  26. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/PublishStore.hpp +25 -1
  27. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/RecoveryPointAdapter.hpp +16 -0
  28. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/SOWRecoveryPointAdapter.hpp +12 -0
  29. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/amps.h +64 -0
  30. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/amps_impl.h +5 -0
  31. amps-python-client-5.3.5.1/src/cpp/include/amps/amps_zlib.h +94 -0
  32. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ampscrc.hpp +11 -11
  33. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ampsplusplus.hpp +84 -47
  34. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ampsver.h +2 -2
  35. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/amps_ssl.c +41 -1
  36. amps-python-client-5.3.5.1/src/cpp/src/amps_zlib.c +124 -0
  37. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/atfork.c +2 -2
  38. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/client.c +41 -0
  39. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/makefile +3 -3
  40. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/tcp.c +571 -70
  41. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/tcps.c +664 -163
  42. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/transports.c +13 -1
  43. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/unix.c +164 -29
  44. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/failedwritehandler.cpp +2 -2
  45. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/fixshredder_docs.h +2 -0
  46. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/haclient.cpp +11 -2
  47. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/haclient_docs.h +13 -0
  48. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/hybridpublishstore.cpp +29 -15
  49. amps-python-client-5.3.5.1/src/hybridpublishstore_docs.h +111 -0
  50. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/memorybookmarkstore_docs.h +2 -1
  51. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/memorypublishstore.cpp +15 -28
  52. amps-python-client-5.3.5.1/src/memorypublishstore_docs.h +107 -0
  53. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/message_docs.h +13 -0
  54. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/messagestream_docs.h +2 -0
  55. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/mmapbookmarkstore.cpp +1 -0
  56. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/nvfixbuilder_docs.h +1 -0
  57. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/nvfixshredder_docs.h +1 -0
  58. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/publishstore.cpp +18 -28
  59. amps-python-client-5.3.5.1/src/publishstore_docs.h +114 -0
  60. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/raw_wrapper.cpp +40 -25
  61. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/recoverypointadapter.cpp +8 -1
  62. amps-python-client-5.3.5.0/docs/html/objects.inv +0 -0
  63. amps-python-client-5.3.5.0/docs/html/searchindex.js +0 -1
  64. amps-python-client-5.3.5.0/src/hybridpublishstore_docs.h +0 -37
  65. amps-python-client-5.3.5.0/src/memorypublishstore_docs.h +0 -34
  66. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/HISTORY +0 -0
  67. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/LICENSE +0 -0
  68. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/README.md +0 -0
  69. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/README.txt +0 -0
  70. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_sources/code.rst.txt +0 -0
  71. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_sources/index.rst.txt +0 -0
  72. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/ajax-loader.gif +0 -0
  73. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/basic.css +0 -0
  74. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/classic.css +0 -0
  75. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/comment-bright.png +0 -0
  76. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/comment-close.png +0 -0
  77. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/comment.png +0 -0
  78. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/default.css +0 -0
  79. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/doctools.js +0 -0
  80. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/down-pressed.png +0 -0
  81. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/down.png +0 -0
  82. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/file.png +0 -0
  83. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/jquery-3.1.0.js +0 -0
  84. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/jquery.js +0 -0
  85. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/minus.png +0 -0
  86. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/plus.png +0 -0
  87. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/pygments.css +0 -0
  88. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/searchtools.js +0 -0
  89. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/sidebar.js +0 -0
  90. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/underscore-1.3.1.js +0 -0
  91. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/underscore.js +0 -0
  92. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/up-pressed.png +0 -0
  93. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/up.png +0 -0
  94. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/html/_static/websupport.js +0 -0
  95. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/resources/custom.css +0 -0
  96. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/docs/resources/flag_logo.svg +0 -0
  97. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_bookmarkstore.hpp +0 -0
  98. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_compat.h +0 -0
  99. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_defs.hpp +0 -0
  100. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_shims.hpp +0 -0
  101. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_ssl.hpp +0 -0
  102. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_type_object.hpp +0 -0
  103. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/include/ampspy_types.hpp +0 -0
  104. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSConsolePublisher.py +0 -0
  105. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSConsoleSubscriber.py +0 -0
  106. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSFIXBuilderPublisher.py +0 -0
  107. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSFIXShredderSubscriber.py +0 -0
  108. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSNVFIXBuilderPublisher.py +0 -0
  109. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSNVFIXShredderSubscriber.py +0 -0
  110. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSPublishForReplay.py +0 -0
  111. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSQueueConsumer.py +0 -0
  112. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSQueuePublisher.py +0 -0
  113. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSSOWConsolePublisher.py +0 -0
  114. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSSOWConsoleSubscriber.py +0 -0
  115. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSSOWandSubscribeConsoleSubscriber.py +0 -0
  116. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSSOWandSubscribeWithOOF.py +0 -0
  117. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSSubscribeForReplay.py +0 -0
  118. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/AMPSUpdateForOOF.py +0 -0
  119. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/CompositeMessagePublisher.py +0 -0
  120. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/CompositeMessageSubscriber.py +0 -0
  121. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/RandomServerChooser.py +0 -0
  122. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/samples/sample.xml +0 -0
  123. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/ampspy_type_object.cpp +0 -0
  124. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/authenticator.cpp +0 -0
  125. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/bookmarkstore.cpp +0 -0
  126. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cmessagehandler.cpp +0 -0
  127. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/command.cpp +0 -0
  128. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/compositemessagebuilder.cpp +0 -0
  129. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/compositemessageparser.cpp +0 -0
  130. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/conflatingrecoverypointadapter.cpp +0 -0
  131. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/BlockStore.hpp +0 -0
  132. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/BookmarkStore.hpp +0 -0
  133. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/Buffer.hpp +0 -0
  134. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/CompositeMessageBuilder.hpp +0 -0
  135. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/CompositeMessageParser.hpp +0 -0
  136. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/DefaultServerChooser.hpp +0 -0
  137. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/Field.hpp +0 -0
  138. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/HAClient.hpp +0 -0
  139. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/LoggedBookmarkStore.hpp +0 -0
  140. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MMapBookmarkStore.hpp +0 -0
  141. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MemoryStoreBuffer.hpp +0 -0
  142. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/MemorySubscriptionManager.hpp +0 -0
  143. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/Message.hpp +0 -0
  144. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ReconnectDelayStrategy.hpp +0 -0
  145. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ReconnectDelayStrategyImpl.hpp +0 -0
  146. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/RecoveryPoint.hpp +0 -0
  147. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/RingBookmarkStore.hpp +0 -0
  148. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ServerChooser.hpp +0 -0
  149. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ServerChooserImpl.hpp +0 -0
  150. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/amps_generated.h +0 -0
  151. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/amps_ssl.h +0 -0
  152. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ampsuri.h +0 -0
  153. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/ampsver.h.in +0 -0
  154. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/constants.hpp +0 -0
  155. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/include/amps/util.hpp +0 -0
  156. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/amps_protocol.c +0 -0
  157. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/amps_protocol_generated.h +0 -0
  158. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/message.c +0 -0
  159. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/message_generated.h +0 -0
  160. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/cpp/src/uri.c +0 -0
  161. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/exponentialdelaystrategy.cpp +0 -0
  162. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/fixbuilder.cpp +0 -0
  163. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/fixeddelaystrategy.cpp +0 -0
  164. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/fixshredder.cpp +0 -0
  165. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/memorybookmarkstore.cpp +0 -0
  166. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/message.cpp +0 -0
  167. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/messagestream.cpp +0 -0
  168. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/nvfixbuilder.cpp +0 -0
  169. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/nvfixshredder.cpp +0 -0
  170. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/reason.cpp +0 -0
  171. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/recoverypoint.cpp +0 -0
  172. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/ringbookmarkstore.cpp +0 -0
  173. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/serverchooser.cpp +0 -0
  174. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/serverchooser_docs.h +0 -0
  175. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/sowrecoverypointadapter.cpp +0 -0
  176. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/store.cpp +0 -0
  177. {amps-python-client-5.3.5.0 → amps-python-client-5.3.5.1}/src/versioninfo.cpp +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: amps-python-client
3
- Version: 5.3.5.0
3
+ Version: 5.3.5.1
4
4
  Summary: AMPS Python Client
5
5
  Home-page: https://crankuptheamps.com
6
6
  Maintainer: 60East Technologies, Incorporated
@@ -1,4 +1,4 @@
1
1
  # Sphinx build info version 1
2
2
  # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3
- config: a06a2fde9c2227163537e41c3d0be247
3
+ config: d6c19b9bcdeb1d0a2b4550580313e9dc
4
4
  tags: 645f666f9bcd5a90fca523b33c5a78b7
@@ -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 Module Reference &#8212; AMPS Python Client 5.3.5.0 documentation</title>
9
+ <title>AMPS Module Reference &#8212; AMPS Python Client 5.3.5.1 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.5.0',
17
+ VERSION: '5.3.5.1',
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="index.html" title="AMPS Python Client Reference"
43
43
  accesskey="P">previous</a> |</li>
44
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.0 documentation</a> &#187;</li>
44
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 documentation</a> &#187;</li>
45
45
  </ul>
46
46
  </div>
47
47
 
@@ -1324,6 +1324,25 @@ by the server.</p>
1324
1324
  </table>
1325
1325
  </dd></dl>
1326
1326
 
1327
+ <dl class="method">
1328
+ <dt id="AMPS.Client.set_publish_batching">
1329
+ <code class="descclassname">Client.</code><code class="descname">set_publish_batching</code><span class="sig-paren">(</span><em>batchSize</em>, <em>batchTimeoutMillis</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.Client.set_publish_batching" title="Permalink to this definition">¶</a></dt>
1330
+ <dd><p>Sets the max bytes to cache and max timeout in millis for caching delta_publish and publish commands.
1331
+ Most useful when your message data is small compared to tcp packet size.</p>
1332
+ <table class="docutils field-list" frame="void" rules="none">
1333
+ <col class="field-name" />
1334
+ <col class="field-body" />
1335
+ <tbody valign="top">
1336
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
1337
+ <li><strong>batchSize</strong> (<em>unsigned long</em>) &#8211; The max number of bytes to cache before sending.</li>
1338
+ <li><strong>batchTimeoutMillis</strong> (<em>unsigned long</em>) &#8211; The max ms between sending batches.</li>
1339
+ </ul>
1340
+ </td>
1341
+ </tr>
1342
+ </tbody>
1343
+ </table>
1344
+ </dd></dl>
1345
+
1327
1346
  <dl class="method">
1328
1347
  <dt id="AMPS.Client.set_publish_store">
1329
1348
  <code class="descclassname">Client.</code><code class="descname">set_publish_store</code><span class="sig-paren">(</span><em>publish_store</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.Client.set_publish_store" title="Permalink to this definition">¶</a></dt>
@@ -3181,7 +3200,7 @@ Default value is 10000 (10 seconds).</p>
3181
3200
 
3182
3201
  <dl class="class">
3183
3202
  <dt id="AMPS.HybridPublishStore">
3184
- <em class="property">class </em><code class="descclassname">AMPS.</code><code class="descname">HybridPublishStore</code><span class="sig-paren">(</span><em>filename</em>, <em>maxMemoryCapacity</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore" title="Permalink to this definition">¶</a></dt>
3203
+ <em class="property">class </em><code class="descclassname">AMPS.</code><code class="descname">HybridPublishStore</code><span class="sig-paren">(</span><em>filename</em>, <em>maxMemoryCapacity</em>, <em>errorOnPublishGap</em>, <em>blockSize</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore" title="Permalink to this definition">¶</a></dt>
3185
3204
  <dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">object</span></code></p>
3186
3205
  <p>A publish store that keeps messages on disk as well as in memory.</p>
3187
3206
  <p>When used with an HAClient, the HAClient manages storing
@@ -3189,13 +3208,16 @@ messages in the publish store, replaying messages to the server after
3189
3208
  failover, and removing messages from the store. With this publish
3190
3209
  store, an application can recover messages from disk after exiting and
3191
3210
  restarting.</p>
3211
+ <p><strong>Constructor Arguments:</strong></p>
3192
3212
  <table class="docutils field-list" frame="void" rules="none">
3193
3213
  <col class="field-name" />
3194
3214
  <col class="field-body" />
3195
3215
  <tbody valign="top">
3196
3216
  <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
3197
- <li><strong>filename</strong> &#8211; The name of the file to use for persisted storage.</li>
3198
- <li><strong>maxMemoryCapacity</strong> &#8211; The maximum memory capacity (in bytes) for in-memory storage.</li>
3217
+ <li><strong>filename</strong> (<em>string</em>) &#8211; The name of the file to use for persisted storage.</li>
3218
+ <li><strong>maxMemoryCapacity</strong> (<em>unsigned long</em>) &#8211; The maximum memory capacity (in bytes) for in-memory storage.</li>
3219
+ <li><strong>errorOnPublishGap</strong> (<em>Boolean</em>) &#8211; If True, a PublishStoreGapException can be thrown by the store if the client logs onto a server that appears to be missing messages no longer held in the store. Optional, default is False.</li>
3220
+ <li><strong>blockSize</strong> (<em>unsigned long</em>) &#8211; The size (in bytes) for each block in which messages are stored. Optional, default is 2048.</li>
3199
3221
  </ul>
3200
3222
  </td>
3201
3223
  </tr>
@@ -3209,7 +3231,22 @@ restarting.</p>
3209
3231
  <col class="field-name" />
3210
3232
  <col class="field-body" />
3211
3233
  <tbody valign="top">
3212
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> &#8211; The highest sequence number to discard.</td>
3234
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The highest sequence number to discard.</td>
3235
+ </tr>
3236
+ </tbody>
3237
+ </table>
3238
+ </dd></dl>
3239
+
3240
+ <dl class="method">
3241
+ <dt id="AMPS.HybridPublishStore.get_error_on_publish_gap">
3242
+ <code class="descname">get_error_on_publish_gap</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore.get_error_on_publish_gap" title="Permalink to this definition">¶</a></dt>
3243
+ <dd><p>Indicates whether <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown
3244
+ by the client publish store if the client logs onto a server that appears to be missing messages no longer held in the store.</p>
3245
+ <table class="docutils field-list" frame="void" rules="none">
3246
+ <col class="field-name" />
3247
+ <col class="field-body" />
3248
+ <tbody valign="top">
3249
+ <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown False otherwise.</td>
3213
3250
  </tr>
3214
3251
  </tbody>
3215
3252
  </table>
@@ -3218,7 +3255,7 @@ restarting.</p>
3218
3255
  <dl class="method">
3219
3256
  <dt id="AMPS.HybridPublishStore.get_last_persisted">
3220
3257
  <code class="descname">get_last_persisted</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore.get_last_persisted" title="Permalink to this definition">¶</a></dt>
3221
- <dd><p>Returns the sequence number of the last message ACK&#8217;ed by the server.</p>
3258
+ <dd><p>Returns the sequence number of last message ACK&#8217;ed by the server.</p>
3222
3259
  </dd></dl>
3223
3260
 
3224
3261
  <dl class="method">
@@ -3257,7 +3294,7 @@ restarting.</p>
3257
3294
  <tbody valign="top">
3258
3295
  <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
3259
3296
  <li><strong>handler</strong> &#8211; The message handler to call with each message.</li>
3260
- <li><strong>sequence</strong> &#8211; The sequence number of the message to replay.</li>
3297
+ <li><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The sequence number of the message to replay.</li>
3261
3298
  </ul>
3262
3299
  </td>
3263
3300
  </tr>
@@ -3265,6 +3302,20 @@ restarting.</p>
3265
3302
  </table>
3266
3303
  </dd></dl>
3267
3304
 
3305
+ <dl class="method">
3306
+ <dt id="AMPS.HybridPublishStore.set_error_on_publish_gap">
3307
+ <code class="descname">set_error_on_publish_gap</code><span class="sig-paren">(</span><em>error_on_publish_gap</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore.set_error_on_publish_gap" title="Permalink to this definition">¶</a></dt>
3308
+ <dd><p>Called to enable or disable throwing <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a>.</p>
3309
+ <table class="docutils field-list" frame="void" rules="none">
3310
+ <col class="field-name" />
3311
+ <col class="field-body" />
3312
+ <tbody valign="top">
3313
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>error_on_publish_gap</strong> (<em>Boolean</em>) &#8211; If True <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown by the client publish store if the client logs onto a server that appears to be missing messages no longer held in the store.</td>
3314
+ </tr>
3315
+ </tbody>
3316
+ </table>
3317
+ </dd></dl>
3318
+
3268
3319
  <dl class="method">
3269
3320
  <dt id="AMPS.HybridPublishStore.set_resize_handler">
3270
3321
  <code class="descname">set_resize_handler</code><span class="sig-paren">(</span><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.HybridPublishStore.set_resize_handler" title="Permalink to this definition">¶</a></dt>
@@ -3279,7 +3330,7 @@ restarting.</p>
3279
3330
  <col class="field-name" />
3280
3331
  <col class="field-body" />
3281
3332
  <tbody valign="top">
3282
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> &#8211; The message to put into the store.</td>
3333
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> (<a class="reference internal" href="#AMPS.Message" title="AMPS.Message"><em>AMPS.Message</em></a>) &#8211; The message to put into the store.</td>
3283
3334
  </tr>
3284
3335
  </tbody>
3285
3336
  </table>
@@ -3603,6 +3654,20 @@ server after failover, and removing messages from the store. With
3603
3654
  this publish store, an application typically checks to be sure
3604
3655
  that the publish store is empty (that is, all messages have been
3605
3656
  persisted in the AMPS server) before exiting.</p>
3657
+ <p><strong>Constructor Arguments:</strong></p>
3658
+ <table class="docutils field-list" frame="void" rules="none">
3659
+ <col class="field-name" />
3660
+ <col class="field-body" />
3661
+ <tbody valign="top">
3662
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
3663
+ <li><strong>blocksPerRealloc</strong> (<em>unsigned long</em>) &#8211; The number of blocks to add to the memory used by the store whenever it needs to grow. Optional, default is 10000.</li>
3664
+ <li><strong>errorOnPublishGap</strong> (<em>Boolean</em>) &#8211; If True, a PublishStoreGapException can be thrown by the store if the client logs onto a server that appears to be missing messages no longer held in the store. Optional, default is False.</li>
3665
+ <li><strong>blockSize</strong> (<em>unsigned long</em>) &#8211; The size (in bytes) for each block in which messages are stored. Optional, default is 2048.</li>
3666
+ </ul>
3667
+ </td>
3668
+ </tr>
3669
+ </tbody>
3670
+ </table>
3606
3671
  <dl class="method">
3607
3672
  <dt id="AMPS.MemoryPublishStore.discard_up_to">
3608
3673
  <code class="descname">discard_up_to</code><span class="sig-paren">(</span><em>sequence</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.MemoryPublishStore.discard_up_to" title="Permalink to this definition">¶</a></dt>
@@ -3611,7 +3676,7 @@ persisted in the AMPS server) before exiting.</p>
3611
3676
  <col class="field-name" />
3612
3677
  <col class="field-body" />
3613
3678
  <tbody valign="top">
3614
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> &#8211; The highest sequence number to discard.</td>
3679
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The highest sequence number to discard.</td>
3615
3680
  </tr>
3616
3681
  </tbody>
3617
3682
  </table>
@@ -3626,7 +3691,7 @@ by the client publish store if the client logs onto a server that appears to be
3626
3691
  <col class="field-name" />
3627
3692
  <col class="field-body" />
3628
3693
  <tbody valign="top">
3629
- <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown, False otherwise.</td>
3694
+ <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown False otherwise.</td>
3630
3695
  </tr>
3631
3696
  </tbody>
3632
3697
  </table>
@@ -3674,7 +3739,7 @@ by the client publish store if the client logs onto a server that appears to be
3674
3739
  <tbody valign="top">
3675
3740
  <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
3676
3741
  <li><strong>handler</strong> &#8211; The message handler to call with each message.</li>
3677
- <li><strong>sequence</strong> &#8211; The sequence number of the message to replay.</li>
3742
+ <li><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The sequence number of the message to replay.</li>
3678
3743
  </ul>
3679
3744
  </td>
3680
3745
  </tr>
@@ -3690,9 +3755,7 @@ by the client publish store if the client logs onto a server that appears to be
3690
3755
  <col class="field-name" />
3691
3756
  <col class="field-body" />
3692
3757
  <tbody valign="top">
3693
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>error_on_publish_gap</strong> (<em>Boolean</em>) &#8211; If True, <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown
3694
- by the client publish store if the client logs onto a server that
3695
- appears to be missing messages no longer held in the store.</td>
3758
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>error_on_publish_gap</strong> (<em>Boolean</em>) &#8211; If True <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown by the client publish store if the client logs onto a server that appears to be missing messages no longer held in the store.</td>
3696
3759
  </tr>
3697
3760
  </tbody>
3698
3761
  </table>
@@ -3712,7 +3775,7 @@ appears to be missing messages no longer held in the store.</td>
3712
3775
  <col class="field-name" />
3713
3776
  <col class="field-body" />
3714
3777
  <tbody valign="top">
3715
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> &#8211; The message to put into the store.</td>
3778
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> (<a class="reference internal" href="#AMPS.Message" title="AMPS.Message"><em>AMPS.Message</em></a>) &#8211; The message to put into the store.</td>
3716
3779
  </tr>
3717
3780
  </tbody>
3718
3781
  </table>
@@ -3811,8 +3874,15 @@ effect the option has.</p>
3811
3874
  <dt id="AMPS.Message.Options.set_bookmark_not_found">
3812
3875
  <code class="descname">set_bookmark_not_found</code><span class="sig-paren">(</span><em>action</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.Message.Options.set_bookmark_not_found" title="Permalink to this definition">¶</a></dt>
3813
3876
  <dd><p>Set the option for the action to take if the requested bookmark to
3814
- start the subscription is not found.
3815
- :param action: Can be one of &#8220;now&#8221;, &#8220;epoch&#8221;, or &#8220;fail&#8221;.</p>
3877
+ start the subscription is not found.</p>
3878
+ <table class="docutils field-list" frame="void" rules="none">
3879
+ <col class="field-name" />
3880
+ <col class="field-body" />
3881
+ <tbody valign="top">
3882
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>action</strong> &#8211; Can be one of &#8220;now&#8221;, &#8220;epoch&#8221;, or &#8220;fail&#8221;.</td>
3883
+ </tr>
3884
+ </tbody>
3885
+ </table>
3816
3886
  </dd></dl>
3817
3887
 
3818
3888
  <dl class="method">
@@ -6842,9 +6912,28 @@ fields in the message.</p>
6842
6912
  <dt id="AMPS.PublishStore">
6843
6913
  <em class="property">class </em><code class="descclassname">AMPS.</code><code class="descname">PublishStore</code><a class="headerlink" href="#AMPS.PublishStore" title="Permalink to this definition">¶</a></dt>
6844
6914
  <dd><p>Bases: <code class="xref py py-class docutils literal"><span class="pre">object</span></code></p>
6845
- <p>AMPS PublishStore Object</p>
6846
- <p>Stores published records in a file while awaiting an ACK from the server. Construct with the name of the file to use for record storage
6847
- and optionally, a Boolean to specify if the store should throw an exception if logging onto a server that might be missing messages not in the store.</p>
6915
+ <p>&#8220;PublishStore
6916
+ A publish store that keeps messages on disk.</p>
6917
+ <p>When used with an HAClient, the HAClient manages storing
6918
+ messages in the publish store, replaying messages to the server after
6919
+ failover, and removing messages from the store. With this publish
6920
+ store, an application can recover messages from disk after exiting and
6921
+ restarting.</p>
6922
+ <p><strong>Constructor Arguments:</strong></p>
6923
+ <table class="docutils field-list" frame="void" rules="none">
6924
+ <col class="field-name" />
6925
+ <col class="field-body" />
6926
+ <tbody valign="top">
6927
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
6928
+ <li><strong>filename</strong> (<em>string</em>) &#8211; The name of the file to use for persisted storage.</li>
6929
+ <li><strong>errorOnPublishGap</strong> (<em>Boolean</em>) &#8211; If True, a PublishStoreGapException can be thrown by the store if the client logs onto a server that appears to be missing messages no longer held in the store. Optional, default is False.</li>
6930
+ <li><strong>blocksPerRealloc</strong> (<em>unsigned long</em>) &#8211; The number of blocks to add to the memory used by the store whenever it needs to grow. Optional, default is 10000.</li>
6931
+ <li><strong>blockSize</strong> (<em>unsigned long</em>) &#8211; The size (in bytes) for each block in which messages are stored. Optional, default is 2048.</li>
6932
+ </ul>
6933
+ </td>
6934
+ </tr>
6935
+ </tbody>
6936
+ </table>
6848
6937
  <dl class="method">
6849
6938
  <dt id="AMPS.PublishStore.discard_up_to">
6850
6939
  <code class="descname">discard_up_to</code><span class="sig-paren">(</span><em>sequence</em><span class="sig-paren">)</span><a class="headerlink" href="#AMPS.PublishStore.discard_up_to" title="Permalink to this definition">¶</a></dt>
@@ -6853,7 +6942,7 @@ and optionally, a Boolean to specify if the store should throw an exception if l
6853
6942
  <col class="field-name" />
6854
6943
  <col class="field-body" />
6855
6944
  <tbody valign="top">
6856
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> &#8211; The highest sequence number to discard.</td>
6945
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The highest sequence number to discard.</td>
6857
6946
  </tr>
6858
6947
  </tbody>
6859
6948
  </table>
@@ -6868,7 +6957,7 @@ by the client publish store if the client logs onto a server that appears to be
6868
6957
  <col class="field-name" />
6869
6958
  <col class="field-body" />
6870
6959
  <tbody valign="top">
6871
- <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown, False otherwise.</td>
6960
+ <tr class="field-odd field"><th class="field-name">Returns:</th><td class="field-body">True if <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown False otherwise.</td>
6872
6961
  </tr>
6873
6962
  </tbody>
6874
6963
  </table>
@@ -6916,7 +7005,7 @@ by the client publish store if the client logs onto a server that appears to be
6916
7005
  <tbody valign="top">
6917
7006
  <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first last simple">
6918
7007
  <li><strong>handler</strong> &#8211; The message handler to call with each message.</li>
6919
- <li><strong>sequence</strong> &#8211; The sequence number of the message to replay.</li>
7008
+ <li><strong>sequence</strong> (<em>unsigned long</em>) &#8211; The sequence number of the message to replay.</li>
6920
7009
  </ul>
6921
7010
  </td>
6922
7011
  </tr>
@@ -6932,9 +7021,7 @@ by the client publish store if the client logs onto a server that appears to be
6932
7021
  <col class="field-name" />
6933
7022
  <col class="field-body" />
6934
7023
  <tbody valign="top">
6935
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>error_on_publish_gap</strong> (<em>Boolean</em>) &#8211; If True, <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown
6936
- by the client publish store if the client logs onto a server that
6937
- appears to be missing messages no longer held in the store.</td>
7024
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>error_on_publish_gap</strong> (<em>Boolean</em>) &#8211; If True <a class="reference internal" href="#AMPS.PublishStoreGapException" title="AMPS.PublishStoreGapException"><code class="xref py py-exc docutils literal"><span class="pre">PublishStoreGapException</span></code></a> can be thrown by the client publish store if the client logs onto a server that appears to be missing messages no longer held in the store.</td>
6938
7025
  </tr>
6939
7026
  </tbody>
6940
7027
  </table>
@@ -6954,7 +7041,7 @@ appears to be missing messages no longer held in the store.</td>
6954
7041
  <col class="field-name" />
6955
7042
  <col class="field-body" />
6956
7043
  <tbody valign="top">
6957
- <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> &#8211; The message to put into the store.</td>
7044
+ <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>message</strong> (<a class="reference internal" href="#AMPS.Message" title="AMPS.Message"><em>AMPS.Message</em></a>) &#8211; The message to put into the store.</td>
6958
7045
  </tr>
6959
7046
  </tbody>
6960
7047
  </table>
@@ -7451,7 +7538,7 @@ versions using older OpenSSL libraries.</li>
7451
7538
  <li class="right" >
7452
7539
  <a href="index.html" title="AMPS Python Client Reference"
7453
7540
  >previous</a> |</li>
7454
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.0 documentation</a> &#187;</li>
7541
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 documentation</a> &#187;</li>
7455
7542
  </ul>
7456
7543
  </div>
7457
7544
  <div class="footer" role="contentinfo">
@@ -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.5.0 documentation</title>
10
+ <title>Index &#8212; AMPS Python Client 5.3.5.1 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.5.0',
18
+ VERSION: '5.3.5.1',
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.5.0 documentation</a> &#187;</li>
41
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 documentation</a> &#187;</li>
42
42
  </ul>
43
43
  </div>
44
44
 
@@ -367,6 +367,8 @@
367
367
  <li><a href="code.html#AMPS.Client.get_error_on_publish_gap">get_error_on_publish_gap() (AMPS.Client method)</a>
368
368
 
369
369
  <ul>
370
+ <li><a href="code.html#AMPS.HybridPublishStore.get_error_on_publish_gap">(AMPS.HybridPublishStore method)</a>
371
+ </li>
370
372
  <li><a href="code.html#AMPS.MemoryPublishStore.get_error_on_publish_gap">(AMPS.MemoryPublishStore method)</a>
371
373
  </li>
372
374
  <li><a href="code.html#AMPS.PublishStore.get_error_on_publish_gap">(AMPS.PublishStore method)</a>
@@ -461,11 +463,11 @@
461
463
  <li><a href="code.html#AMPS.Message.get_records_inserted">get_records_inserted() (AMPS.Message method)</a>
462
464
  </li>
463
465
  <li><a href="code.html#AMPS.Message.get_records_returned">get_records_returned() (AMPS.Message method)</a>
464
- </li>
465
- <li><a href="code.html#AMPS.Message.get_records_updated">get_records_updated() (AMPS.Message method)</a>
466
466
  </li>
467
467
  </ul></td>
468
468
  <td style="width: 33%; vertical-align: top;"><ul>
469
+ <li><a href="code.html#AMPS.Message.get_records_updated">get_records_updated() (AMPS.Message method)</a>
470
+ </li>
469
471
  <li><a href="code.html#AMPS.HAClient.get_resubscription_timeout">get_resubscription_timeout() (AMPS.HAClient method)</a>
470
472
  </li>
471
473
  <li><a href="code.html#AMPS.Client.get_retry_on_disconnect">get_retry_on_disconnect() (AMPS.Client method)</a>
@@ -959,6 +961,8 @@
959
961
  <li><a href="code.html#AMPS.Client.set_error_on_publish_gap">set_error_on_publish_gap() (AMPS.Client method)</a>
960
962
 
961
963
  <ul>
964
+ <li><a href="code.html#AMPS.HybridPublishStore.set_error_on_publish_gap">(AMPS.HybridPublishStore method)</a>
965
+ </li>
962
966
  <li><a href="code.html#AMPS.MemoryPublishStore.set_error_on_publish_gap">(AMPS.MemoryPublishStore method)</a>
963
967
  </li>
964
968
  <li><a href="code.html#AMPS.PublishStore.set_error_on_publish_gap">(AMPS.PublishStore method)</a>
@@ -1045,6 +1049,8 @@
1045
1049
  <li><a href="code.html#AMPS.Message.Options.set_pause">set_pause() (AMPS.Message.Options method)</a>
1046
1050
  </li>
1047
1051
  <li><a href="code.html#AMPS.Message.Options.set_projection">set_projection() (AMPS.Message.Options method)</a>
1052
+ </li>
1053
+ <li><a href="code.html#AMPS.Client.set_publish_batching">set_publish_batching() (AMPS.Client method)</a>
1048
1054
  </li>
1049
1055
  <li><a href="code.html#AMPS.Client.set_publish_store">set_publish_store() (AMPS.Client method)</a>
1050
1056
  </li>
@@ -1422,7 +1428,7 @@
1422
1428
  <li class="right" >
1423
1429
  <a href="py-modindex.html" title="Python Module Index"
1424
1430
  >modules</a> |</li>
1425
- <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.0 documentation</a> &#187;</li>
1431
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 documentation</a> &#187;</li>
1426
1432
  </ul>
1427
1433
  </div>
1428
1434
  <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.5.0 documentation</title>
9
+ <title>AMPS Python Client Reference &#8212; AMPS Python Client 5.3.5.1 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.5.0',
17
+ VERSION: '5.3.5.1',
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.5.0 documentation</a> &#187;</li>
44
+ <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.5.1 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.5.0 documentation</a> &#187;</li>
123
+ <li class="nav-item nav-item-0"><a href="#">AMPS Python Client 5.3.5.1 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.5.0 documentation</title>
9
+ <title>Python Module Index &#8212; AMPS Python Client 5.3.5.1 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.5.0',
17
+ VERSION: '5.3.5.1',
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.5.0 documentation</a> &#187;</li>
47
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 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.5.0 documentation</a> &#187;</li>
103
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 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.5.0 documentation</title>
9
+ <title>Search &#8212; AMPS Python Client 5.3.5.1 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.5.0',
17
+ VERSION: '5.3.5.1',
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.5.0 documentation</a> &#187;</li>
48
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 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.5.0 documentation</a> &#187;</li>
99
+ <li class="nav-item nav-item-0"><a href="index.html">AMPS Python Client 5.3.5.1 documentation</a> &#187;</li>
100
100
  </ul>
101
101
  </div>
102
102
  <div class="footer" role="contentinfo">