├── LICENSE ├── README.md └── include └── CpperoMQ ├── All.hpp ├── Common.hpp ├── Context.hpp ├── DealerSocket.hpp ├── Error.hpp ├── ExtendedPublishSocket.hpp ├── ExtendedSubscribeSocket.hpp ├── IncomingMessage.hpp ├── Message.hpp ├── Mixins ├── ConflatingSocket.hpp ├── IdentifyingSocket.hpp ├── ReceivingSocket.hpp ├── RequestingSocket.hpp ├── RouterProbingSocket.hpp ├── RoutingSocket.hpp ├── SendingSocket.hpp ├── SocketTypeWrapper.hpp └── SubscribingSocket.hpp ├── OutgoingMessage.hpp ├── PollItem.hpp ├── Poller.hpp ├── Proxy.hpp ├── PublishSocket.hpp ├── PullSocket.hpp ├── PushSocket.hpp ├── Receivable.hpp ├── ReplySocket.hpp ├── RequestSocket.hpp ├── RouterSocket.hpp ├── Sendable.hpp ├── Socket.hpp ├── SubscribeSocket.hpp └── Version.hpp /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/README.md -------------------------------------------------------------------------------- /include/CpperoMQ/All.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/All.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Common.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Context.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/DealerSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/DealerSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Error.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/ExtendedPublishSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/ExtendedPublishSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/ExtendedSubscribeSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/ExtendedSubscribeSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/IncomingMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/IncomingMessage.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Message.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/ConflatingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/ConflatingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/IdentifyingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/IdentifyingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/ReceivingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/ReceivingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/RequestingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/RequestingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/RouterProbingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/RouterProbingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/RoutingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/RoutingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/SendingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/SendingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/SocketTypeWrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/SocketTypeWrapper.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Mixins/SubscribingSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Mixins/SubscribingSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/OutgoingMessage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/OutgoingMessage.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/PollItem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/PollItem.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Poller.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Poller.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Proxy.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/PublishSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/PublishSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/PullSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/PullSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/PushSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/PushSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Receivable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Receivable.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/ReplySocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/ReplySocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/RequestSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/RequestSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/RouterSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/RouterSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Sendable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Sendable.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Socket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/SubscribeSocket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/SubscribeSocket.hpp -------------------------------------------------------------------------------- /include/CpperoMQ/Version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jship/CpperoMQ/HEAD/include/CpperoMQ/Version.hpp --------------------------------------------------------------------------------