Hi,
I am trying to retrieve the results of FilteredStream. I followed the steps,
Option1:
stc::subscribe -Parent project1 -ResultParent port1 -ConfigType Analyzer -resulttype FilteredStreamResults
stc::get analyzer1 -children-analyzer32BitFilter
stc::get analyzer1 -children-filteredStreamResults
There are no Filter Handle returned when I tried priniting it.
Option2:
stc::subscribe -Parent project1 -ResultParent port1 -ConfigType Analyzer -resulttype FilteredStreamResults
set result [stc::get $resinfo -resultHandleList] <<< does not return anything
array set tx_counts [stc::get $result ]
puts "X: [array get rx_counts]" returns the below error message since the $result is empty handle
**** stcerror in get: invalid handle "": should have been obtained using create or get ****
All the project handle and port handle details are correct.
Can some one help what is wrong in the above code?