Closed ezpzbz closed 4 years ago
Similar to the thing that we do for CalcJob in setting label and call_link_label, we can do for calcfunction calles with a slightly different approach. It is benefecial for later querying the results. The code snippet would be as:
CalcJob
label
call_link_label
calcfunction
@calcfunction def some_calcfunction(a, b): pass some_calcfunction(Int(1), Int(2), metadata={'label': 'a calcfunction', 'call_link_label': 'some_calcfunction'})
Solved in #16
Similar to the thing that we do for
CalcJob
in settinglabel
andcall_link_label
, we can do forcalcfunction
calles with a slightly different approach. It is benefecial for later querying the results. The code snippet would be as: