-
|
Looking for reference documentation for developing in python. For example, what's the difference between BeginReadAnalogF64Request() and ReadAnalogF64Request()? They both look very similar in the hint file, but can't find any descriptions. Thanks for help in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
|
BeginReadAnalogF64 uses "data monikers" to allow streaming data via a non-gRPC mechanism such as shared memory or RDMA, using https://github.com/ni/grpc-sideband/blob/main/README.md . ReadAnalogF64 synchronously returns the data in the gRPC response message. I agree this needs more documentation. |
Beta Was this translation helpful? Give feedback.
BeginReadAnalogF64 uses "data monikers" to allow streaming data via a non-gRPC mechanism such as shared memory or RDMA, using https://github.com/ni/grpc-sideband/blob/main/README.md .
ReadAnalogF64 synchronously returns the data in the gRPC response message.
I agree this needs more documentation.