restq
restq copied to clipboard
Corvusoft's RestQ framework provides an open HTTP API for technology agnostic and language neutral message broking services.
`{ queues[ “*” ] }` or all weather queues. Its the responsibility of the worker to update its config. Create a default '/queues/new-queue-created’ Queue to signal workers (with queue config)...
``` C++ exchange.set_dispatch( "http", HTTPDispatch ); exchange.set_dispatch( "amqp", RabbitDispatch ); exchange.set_dispatch( "usb", USBDispatch ); ```
Direct (full message) / Indirect messaging (message url). with indirect messaging you still have to send back Accepted response code and then go off and pull the message. if you...
Expect header 100-Continue before sending message body!!
``` C++ Exchange::set_compression( GZIPCompression ); Exchange::set_compression( CompressCompression ); Exchange::set_compression( HuffmanCompression ); ```
``` C++ Exchange::set_character_set( UTF8Encoder ); Exchange::set_character_set( UTF16Encoder ); Exchange::set_character_set( UTF32Encoder ); ```