-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to specify parent child streams ? #40
Comments
I don't believe this is currently supported. Good request though. Feel free to submit a PR if you would like it or need it within a reasonable timeframe. |
Sure @jlloyd-widen, would love to work on this feature request. I was trying to understand the current logic and I see that we are doing
And then before appending a dynamic stream, we would somehow have to append a child stream class, but I am not very sure on how to specify Thanks for the help 😄 |
Well, I'm not too sure off the top of my head since I've never instantiated child streams in this way before. All I know is that the only real difference between a parent stream and child stream from a code perspective is that the parent stream has a particular method defined within it that looks something like this:
And a child stream has the
My guess is that you can use our |
Hi!
I have 2 streams X and Y.
My stream Y depends on X, i.e Y will iterate over all IDs that I got from X's stream. How do i specify this in the config ? Is this supported ?
Thanks 😄
The text was updated successfully, but these errors were encountered: