summaryrefslogtreecommitdiff
path: root/gr-zeromq/python/zeromq/qa_zeromq_sub.py
Commit message (Collapse)AuthorAgeFilesLines
* qa: run autopep8 formatting on qa python filesmormj2020-10-301-16/+55
| | | | | | find ./ -iname qa*.py | xargs autopep8 --in-place -a -a mostly formats whitespace and gets rid of trailing semicolons
* gr-zeromq: Add optional key filteringAndriy Gelman2020-03-021-1/+44
| | | | | | | | | Fixes #2236 Allows to filter a multi-part message by key/topic on a sub source and insert key/topic on a pub sink. Signed-off-by: Andriy Gelman <andriy.gelman@gmail.com>
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* gr-zeromq: Let OS pick free port for testsBrennan Ashton2018-11-281-3/+4
|
* gr-zeromq: Increase socket setup time so tests are more reliableBrennan Ashton2018-11-031-2/+2
| | | | | | The 250ms delay between starting a send and terminating a recv was very boarderline when run on my machine. Increasing this time slightly produces much more reliable results.
* Merge remote-tracking branch 'origin/next' into merge_nextMarcus Müller2018-08-311-2/+2
|\
| * python: Py3k compatAndrej Rode2018-06-231-2/+2
| |
* | zeromq: adds delay to test to allow subscriber to initialize prior to ↵gnieboer2018-03-261-0/+2
| | | | | | | | sending data.
* | zeromq: change ports used in zeromq_sub QAAndrej Rode2018-02-061-3/+3
|/
* Support receiving multi-part ZeroMQ messagesBrian Orr2017-04-131-0/+81
ZeroMQ sink blocks will attempt to load all parts of a multi-part message before processing tags and outputting items. Allows senders to take advantage of ZeroMQ's zero-copy message delivery. Add check for incompatible data sizes between ZMQ endpoints. Fixes #1080