Is it possible to resolve custom tags remotely? #359
Replies: 1 comment 6 replies
-
The custom tag resolvers are expected to be synchronous, as allowing asynchrony there would effectively require everything up to and including So if your remote calls are sync, there should be no issue in writing a custom tag for handling them. OTOH, if they're async, then you're probably better off parsing the source first with |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi team.
Due to the architecture of my app, I'd like to define some remote custom tag resolvers, which should be involved when parsing YAMLs, to provide dynamic custom tag definitions.
And the communication between systems uses a JSON based RPC. So only plain datas are supported during communication.
Can I know your opinions about the possibility? Thanks.
Beta Was this translation helpful? Give feedback.
All reactions