Issue Details
On defining a task and printing it, it results in the following:
>>> nidaqmx.Task()
Task (name=_unnamedTask<C>)
However, inside callback_method of register_done_event
(callback_method), instead of above, I am rather getting an integer value in the task_handle variable, eg: 1844437056.
>>> task_handle
1844437056
So, what is this task_handle variable and how is it related to task?