-
Notifications
You must be signed in to change notification settings - Fork 137
Description
Hello,
I maintain a BACnet-based test framework in python at my company that uses MBS's BTF as a basis for communicating over the network, but I was interested in switching to bacpypes because it's open source.
After tinkering with the examples I could get a pretty basic version of the 'ReadObjectList' sample running, but it still requires me to queue up the service request with 'deffered' and then call 'run()'. The problem is, in my environment we can send hundreds (or thousands) of requests to our devices in a single test and we do other processing in between them, such as making assertions, logging, and general test execution. Since I can't queue up every service ahead of time, will I need to call 'run()' for every BACnet service I want to send?
Thank you!