You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It's possible to have normal inport like path that takes list<string>
What if user pass incorrect path? Should Field have err outport? No, it should panic. User should not use field in the first place. We need to add it to its description.
Problems
Runtime overhead
This is simplicity vs performance kind of tradeoff
We need to allocate a message container which is a little bit bigger than native go slice
We need to use network transmission machinery to make it work
The text was updated successfully, but these errors were encountered:
It's possible to have normal inport like
path
that takeslist<string>
What if user pass incorrect path? Should
Field
haveerr
outport? No, it should panic. User should not use field in the first place. We need to add it to its description.Problems
Runtime overhead
This is simplicity vs performance kind of tradeoff
The text was updated successfully, but these errors were encountered: